mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
bump min dns-lexicon dependency
This commit is contained in:
parent
d634b0bede
commit
f35889af74
10 changed files with 12 additions and 21 deletions
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,6 +7,9 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
# This version of lexicon is required to address the problem described in
|
||||
# https://github.com/AnalogJ/lexicon/issues/387.
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
@ -25,18 +28,6 @@ elif 'bdist_wheel' in sys.argv[1:]:
|
|||
if os.environ.get('SNAP_BUILD'):
|
||||
install_requires.append('packaging')
|
||||
|
||||
# This package normally depends on dns-lexicon>=3.2.1 to address the
|
||||
# problem described in https://github.com/AnalogJ/lexicon/issues/387,
|
||||
# however, the fix there has been backported to older versions of
|
||||
# lexicon found in various Linux distros. This conditional helps us test
|
||||
# that we've maintained compatibility with these versions of lexicon
|
||||
# which allows us to potentially upgrade our packages in these distros
|
||||
# as necessary.
|
||||
if os.environ.get('CERTBOT_OLDEST') == '1':
|
||||
install_requires.append('dns-lexicon>=3.1.0') # Changed parameter name
|
||||
else:
|
||||
install_requires.append('dns-lexicon>=3.2.1')
|
||||
|
||||
docs_extras = [
|
||||
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
|
||||
'sphinx_rtd_theme',
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
version = '1.17.0.dev0'
|
||||
|
||||
install_requires = [
|
||||
'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
|
||||
'dns-lexicon>=3.2.1',
|
||||
'setuptools>=39.0.1',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ parsedatetime = "2.4"
|
|||
# Tracking at https://github.com/certbot/certbot/issues/6473
|
||||
boto3 = "1.4.7"
|
||||
botocore = "1.7.41"
|
||||
dns-lexicon = "3.1.0"
|
||||
dns-lexicon = "3.2.1"
|
||||
|
||||
# Other dependencies
|
||||
# We add any dependencies that must be specified in this file for any another
|
||||
|
|
|
|||
Loading…
Reference in a new issue