summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBrian Wellington <bwelling@xbill.org>2020-03-10 10:58:56 -0700
committerBrian Wellington <bwelling@xbill.org>2020-03-10 10:58:56 -0700
commitbe4671ca4b72d72798b1958da7041596f199d436 (patch)
tree18b94854ea05a277d52a169a47543fe457c96b37 /setup.py
parent0f02feb51ad2c14b7fae8fd5d8dc9c2a5e09d8cc (diff)
downloaddnspython-be4671ca4b72d72798b1958da7041596f199d436.tar.gz
Use PyCryptodome for ECDSA.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8279a89..2dac565 100755
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,7 @@ direct manipulation of DNS zones, messages, names, and records.""",
'tests_require': ['typing ; python_version<"3.5"'],
'extras_require': {
'IDNA': ['idna>=2.1'],
- 'DNSSEC': ['pycryptodome', 'ecdsa>=0.13'],
+ 'DNSSEC': ['pycryptodome>=3.4'],
},
'ext_modules': ext_modules if compile_cython else None,
'zip_safe': False if compile_cython else None,