From 0e6a129724b707ebf79149376251e85fad550414 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Wed, 8 Feb 2017 00:09:41 -0500 Subject: replace pyasn1 with asn1crypto (#3361) * replace pyasn1 with asn1crypto * allow trailing bytes * fix x509 test * update CHANGELOG.rst * fix assert * make asn1crypto code more idiomatic * find tag * final clean-up * leave trailing byte logic unchanged * document dependency change * spelling * fix spelling --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 8419e6a7..1b1ff608 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ VECTORS_DEPENDENCY = "cryptography_vectors=={0}".format(about['__version__']) requirements = [ "idna>=2.0", - "pyasn1>=0.1.8", + "asn1crypto>=0.21.0", "six>=1.4.1", "setuptools>=11.3", ] @@ -61,7 +61,6 @@ test_requirements = [ "pytest>=2.9.0", "pretend", "iso8601", - "pyasn1_modules", "pytz", ] if sys.version_info[:2] > (2, 6): -- cgit v1.2.3