diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-05-18 18:59:25 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-05-18 18:59:25 -0700 |
commit | 71a16210c39c59bcf205da5a447777c55649ecf8 (patch) | |
tree | 349103292e8fc04559dec003104cdb723db68846 | |
parent | b896881ea87c0a019a5e18a507c7c265b259a4d3 (diff) | |
download | cryptography-71a16210c39c59bcf205da5a447777c55649ecf8.tar.gz cryptography-71a16210c39c59bcf205da5a447777c55649ecf8.tar.bz2 cryptography-71a16210c39c59bcf205da5a447777c55649ecf8.zip |
require idna 2.0 or better because it's better
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ with open(os.path.join(src_dir, "cryptography", "__about__.py")) as f: VECTORS_DEPENDENCY = "cryptography_vectors=={0}".format(about['__version__']) requirements = [ - "idna", + "idna>=2.0", "pyasn1", "six>=1.4.1", "setuptools" |