[pypy-commit] cffi default: pycparser 2.08 no longer contains lextab.py/yacctab.py

arigo noreply at buildbot.pypy.org
Mon Aug 13 18:10:52 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r847:a317933a045d
Date: 2012-08-13 18:10 +0200
http://bitbucket.org/cffi/cffi/changeset/a317933a045d/

Log:	pycparser 2.08 no longer contains lextab.py/yacctab.py out of the
	box, which looks like a bug. It works in 2.07.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -98,6 +98,8 @@
         'hgdistver',
     ],
     install_requires=[
-        'pycparser',
+        # pycparser 2.08 no longer contains lextab.py/yacctab.py
+        # out of the box, which looks like a bug
+        'pycparser<=2.07',
     ]
   )


More information about the pypy-commit mailing list