[pypy-commit] pypy default: Update to cffi 1.0.3.

arigo noreply at buildbot.pypy.org
Mon May 25 18:16:57 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r77547:530dc85aebc4
Date: 2015-05-25 18:16 +0200
http://bitbucket.org/pypy/pypy/changeset/530dc85aebc4/

Log:	Update to cffi 1.0.3.

diff --git a/pypy/module/_cffi_backend/__init__.py b/pypy/module/_cffi_backend/__init__.py
--- a/pypy/module/_cffi_backend/__init__.py
+++ b/pypy/module/_cffi_backend/__init__.py
@@ -2,7 +2,7 @@
 from pypy.interpreter.mixedmodule import MixedModule
 from rpython.rlib import rdynload
 
-VERSION = "1.0.2"
+VERSION = "1.0.3"
 
 
 class Module(MixedModule):
diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py b/pypy/module/_cffi_backend/test/_backend_test_c.py
--- a/pypy/module/_cffi_backend/test/_backend_test_c.py
+++ b/pypy/module/_cffi_backend/test/_backend_test_c.py
@@ -3335,4 +3335,4 @@
 
 def test_version():
     # this test is here mostly for PyPy
-    assert __version__ == "1.0.2"
+    assert __version__ == "1.0.3"


More information about the pypy-commit mailing list