diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-30 16:56:34 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-30 16:56:34 -0500 |
commit | 9a0ad0439324201f8a82fc48f1d358596a666921 (patch) | |
tree | 7078e46a8395de78cafc0e9e9b5788ee2e4f91fe | |
parent | 66ca9f7aead0ded44cca38c211ea20db2cf82193 (diff) | |
download | cryptography-9a0ad0439324201f8a82fc48f1d358596a666921.tar.gz cryptography-9a0ad0439324201f8a82fc48f1d358596a666921.tar.bz2 cryptography-9a0ad0439324201f8a82fc48f1d358596a666921.zip |
Fixed #2605 -- require setuptools 1.0
Per @dstufft:
- 0.6.28 or something around there that supports wheels
- 0.7 is the version that introduced marker support in setuptools
- 1.0 is the version where setuptools started using and verifying tls
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ requirements = [ "idna>=2.0", "pyasn1>=0.1.8", "six>=1.4.1", - "setuptools", + "setuptools>=1.0", ] setup_requirements = [] |