- Set minimum dnspython version to 1.16 because previous versions can not

support the timeout parameter (LP: #1856546)
This commit is contained in:
Scott Kitterman
2019-12-16 15:18:53 -05:00
parent e969511184
commit cb32e3e527
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,5 +1,7 @@
Verstion 1.0.2
- Update documentation URL in README.md
- Set minimum dnspython version to 1.16 because previous versions can not
support the timeout parameter (LP: #1856546)
2019-12-15 Version 1.0.1
- Follow CNAMES when looking up key records when using DNS (pydns)
+1 -1
View File
@@ -35,7 +35,7 @@ try:
else:
kw['install_requires'] = ['Py3DNS']
except ImportError: # If PyDNS is not installed, prefer dnspython
kw['install_requires'] = ['dnspython']
kw['install_requires'] = ['dnspython>=1.16.0']
with open("README.md", "r") as fh:
long_description = fh.read()