temporarily pin cffi to avoid bug related to virtualenv (#4083)

* temporarily pin cffi to avoid bug related to virtualenv

* right, don't duplicate the name
This commit is contained in:
Paul Kehrer 2018-01-12 20:16:46 +01:00 committed by Alex Gaynor
parent d2c12683d3
commit ba6798161c

View file

@ -52,7 +52,7 @@ if platform.python_implementation() == "PyPy":
"upgrade PyPy to use this library."
)
else:
setup_requirements.append("cffi>=1.7")
setup_requirements.append("cffi>=1.7,!=1.11.3")
test_requirements = [
"pytest>=3.2.1,!=3.3.0",