diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-08 11:01:00 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-08 11:01:00 -0800 |
commit | 68416c33d3868465f2485e4facae84900ad2c632 (patch) | |
tree | 2c6923033e22467c1e750f98afe237323fcd617e /setup.py | |
parent | 9e507d2ab62cec4c9b63b08a6f5ae8656106a162 (diff) | |
parent | ac4d5f2249de136cbfef72aa650dcc4703b67851 (diff) | |
download | cryptography-68416c33d3868465f2485e4facae84900ad2c632.tar.gz cryptography-68416c33d3868465f2485e4facae84900ad2c632.tar.bz2 cryptography-68416c33d3868465f2485e4facae84900ad2c632.zip |
Merge pull request #1502 from reaperhulk/fix-1285
Support decoding RFC 6979 signatures to (r, s)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,6 +36,7 @@ VECTORS_DEPENDENCY = "cryptography_vectors=={0}".format(about['__version__']) requirements = [ CFFI_DEPENDENCY, + "pyasn1", SIX_DEPENDENCY, SETUPTOOLS_DEPENDENCY ] @@ -43,7 +44,6 @@ requirements = [ # If you add a new dep here you probably need to add it in the tox.ini as well test_requirements = [ "pytest", - "pyasn1", "pretend", "iso8601", ] |