[pypy-commit] pypy release-pypy3.3-v5: for this release ignore failures in cffi import library builds

mattip pypy.commits at gmail.com
Sun May 29 14:18:26 EDT 2016


Author: Matti Picus <matti.picus at gmail.com>
Branch: release-pypy3.3-v5
Changeset: r84822:561d4d8baeb6
Date: 2016-05-29 21:12 +0300
http://bitbucket.org/pypy/pypy/changeset/561d4d8baeb6/

Log:	for this release ignore failures in cffi import library builds

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -91,7 +91,8 @@
                 add the --without-{0} option to skip packaging this
                 binary CFFI extension, or say --without-cffi.""".format(key)
         if len(failures) > 0:
-            return 1, None
+            pass
+            #return 1, None
 
     if sys.platform == 'win32' and not rename_pypy_c.lower().endswith('.exe'):
         rename_pypy_c += '.exe'


More information about the pypy-commit mailing list