[pypy-commit] cffi cffi-1.0: fix

arigo noreply at buildbot.pypy.org
Sun May 17 12:27:00 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: cffi-1.0
Changeset: r2027:c1c823ed72b2
Date: 2015-05-17 11:17 +0200
http://bitbucket.org/cffi/cffi/changeset/c1c823ed72b2/

Log:	fix

diff --git a/doc/source/cdef.rst b/doc/source/cdef.rst
--- a/doc/source/cdef.rst
+++ b/doc/source/cdef.rst
@@ -88,9 +88,9 @@
 
     setup(
         ...,
-        setup_requires=["cffi>=1.0.dev0"],
+        setup_requires=["cffi>=1.0.0"],
         cffi_modules=["path/to/foo_build.py:ffi"],
-        install_requires=["cffi>=1.0.dev0"],
+        install_requires=["cffi>=1.0.0"],
     )
 
 Note that CFFI actually contains two different ``FFI`` classes.  The


More information about the pypy-commit mailing list