Skip to content

Commit

Permalink
revert setup_requires 'cffi', closes #849
Browse files Browse the repository at this point in the history
Without this line, `pygit2/_libgit2.abi3.so` file is not compiled during set up, what causes slowdown due to fallback to `cffi` in runtime, see #849

Literally is a single line revert of e5e5f26 commit.
  • Loading branch information
jaymecd committed Dec 22, 2018
1 parent 7d0ee60 commit 989c687
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ def run(self):
long_description=long_description,
packages=['pygit2'],
package_data={'pygit2': ['decl.h']},
setup_requires=['cffi'],
install_requires=['cffi', 'six', 'pycparser<2.18'],
zip_safe=False,
cmdclass=cmdclass,
Expand Down

0 comments on commit 989c687

Please sign in to comment.