- Set minimum dnspython version to 1.16 because previous versions can not
support the timeout parameter (LP: #1856546)
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user