Remove the setuptools and CFFI requirements, which break pip install -U

PyPy ships with CFFI, but pip install -U will upgrade it if a newer CFFI
is available, which will break the CFFI installation (and PyPy itself).
This commit is contained in:
Julian Berman 2015-02-24 10:51:53 -05:00
parent 4733b47c9a
commit 4cf3811376
No known key found for this signature in database
GPG key ID: 3F8D9C8C011729F8

View file

@ -35,7 +35,6 @@ SIX_DEPENDENCY = "six>=1.4.1"
VECTORS_DEPENDENCY = "cryptography_vectors=={0}".format(about['__version__'])
requirements = [
CFFI_DEPENDENCY,
"pyasn1",
SIX_DEPENDENCY,
SETUPTOOLS_DEPENDENCY
@ -44,6 +43,9 @@ requirements = [
if sys.version_info < (3, 4):
requirements.append("enum34")
if platform.python_implementation() != "PyPy":
requirements.append(CFFI_DEPENDENCY)
# If you add a new dep here you probably need to add it in the tox.ini as well
test_requirements = [
"pytest",