mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 00:22:04 +02:00
More pip dependency resolution workarounds (#5339)
* remove pyopenssl and six deps * remove outdated tox.ini dep requirement
This commit is contained in:
@@ -30,10 +30,9 @@ readme = read_file(os.path.join(here, 'README.rst'))
|
|||||||
changes = read_file(os.path.join(here, 'CHANGES.rst'))
|
changes = read_file(os.path.join(here, 'CHANGES.rst'))
|
||||||
version = meta['version']
|
version = meta['version']
|
||||||
|
|
||||||
# Please update tox.ini when modifying dependency version requirements
|
# This package relies on PyOpenSSL, requests, and six, however, it isn't
|
||||||
# This package relies on requests, however, it isn't specified here to avoid
|
# specified here to avoid masking the more specific request requirements in
|
||||||
# masking the more specific request requirements in acme. See
|
# acme. See https://github.com/pypa/pip/issues/988 for more info.
|
||||||
# https://github.com/pypa/pip/issues/988 for more info.
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'acme=={0}'.format(version),
|
'acme=={0}'.format(version),
|
||||||
# We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but
|
# We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but
|
||||||
@@ -44,13 +43,11 @@ install_requires = [
|
|||||||
'cryptography>=1.2', # load_pem_x509_certificate
|
'cryptography>=1.2', # load_pem_x509_certificate
|
||||||
'mock',
|
'mock',
|
||||||
'parsedatetime>=1.3', # Calendar.parseDT
|
'parsedatetime>=1.3', # Calendar.parseDT
|
||||||
'PyOpenSSL',
|
|
||||||
'pyrfc3339',
|
'pyrfc3339',
|
||||||
'pytz',
|
'pytz',
|
||||||
# For pkg_resources. >=1.0 so pip resolves it to a version cryptography
|
# For pkg_resources. >=1.0 so pip resolves it to a version cryptography
|
||||||
# will tolerate; see #2599:
|
# will tolerate; see #2599:
|
||||||
'setuptools>=1.0',
|
'setuptools>=1.0',
|
||||||
'six',
|
|
||||||
'zope.component',
|
'zope.component',
|
||||||
'zope.interface',
|
'zope.interface',
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user