From 2e105bd18c3231c010611c61fc9ef7019db039b2 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Fri, 12 Apr 2019 20:34:42 -0400 Subject: [PATCH] Py3DNS vice PyDNS because we're python3 now --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b727841..bc10b0f 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ try: import dns kw['install_requires'] = ['dkimpy>=0.7', 'pymilter', 'authres>=1.1.0', 'PyNaCl', 'dnspython'] except ImportError: # If PyDNS is not installed, prefer dnspython - kw['install_requires'] = ['dkimpy>=0.7', 'pymilter', 'authres>=1.1.0', 'PyNaCl', 'PyDNS'] + kw['install_requires'] = ['dkimpy>=0.7', 'pymilter', 'authres>=1.1.0', 'PyNaCl', 'Py3DNS'] setup( name='dkimpy-milter',