cffi 1.10 not yet supported

This commit is contained in:
J. David Ibáñez 2017-03-22 16:01:02 +01:00
parent d622e87654
commit 803b1cb154
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ env: LIBGIT2=~/libgit2/_install/ LD_LIBRARY_PATH=~/libgit2/_install/lib
before_install:
- sudo apt-get install cmake
- pip install cffi
- pip install cffi==1.9.1
- "./.travis.sh"
script:

View File

@ -203,8 +203,8 @@ setup(name='pygit2',
long_description=long_description,
packages=['pygit2'],
package_data={'pygit2': ['decl.h']},
setup_requires=['cffi'],
install_requires=['cffi', 'six'],
setup_requires=['cffi<1.10'],
install_requires=['cffi<1.10', 'six'],
zip_safe=False,
cmdclass=cmdclass,
**extra_args)