[pypy-commit] pypy default: Needs at least cffi 1.3.0 to successfully run some of the tests

arigo noreply at buildbot.pypy.org
Mon Nov 16 05:09:01 EST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r80704:d5f71dcd6acb
Date: 2015-11-16 11:09 +0100
http://bitbucket.org/pypy/pypy/changeset/d5f71dcd6acb/

Log:	Needs at least cffi 1.3.0 to successfully run some of the tests

diff --git a/pypy/module/_cffi_backend/test/test_recompiler.py b/pypy/module/_cffi_backend/test/test_recompiler.py
--- a/pypy/module/_cffi_backend/test/test_recompiler.py
+++ b/pypy/module/_cffi_backend/test/test_recompiler.py
@@ -16,8 +16,8 @@
         from cffi import ffiplatform
     except ImportError:
         py.test.skip("system cffi module not found or older than 1.0.0")
-    if cffi.__version_info__ < (1, 2, 0):
-        py.test.skip("system cffi module needs to be at least 1.2.0")
+    if cffi.__version_info__ < (1, 3, 0):
+        py.test.skip("system cffi module needs to be at least 1.3.0")
     space.appexec([], """():
         import _cffi_backend     # force it to be initialized
     """)


More information about the pypy-commit mailing list