Merge pull request #3269 from yan12125/python3-certonly

Python 3 support for certonly
This commit is contained in:
Peter Eckersley
2016-08-05 14:43:55 -07:00
committed by GitHub
8 changed files with 26 additions and 14 deletions
+6 -1
View File
@@ -42,7 +42,6 @@ install_requires = [
'parsedatetime>=1.3', # Calendar.parseDT
'PyOpenSSL',
'pyrfc3339',
'python2-pythondialog>=3.2.2rc1', # Debian squeeze support, cf. #280
'pytz',
# For pkg_resources. >=1.0 so pip resolves it to a version cryptography
# will tolerate; see #2599:
@@ -52,6 +51,12 @@ install_requires = [
'zope.interface',
]
# Debian squeeze support, cf. #280
if sys.version_info[0] == 2:
install_requires.append('python2-pythondialog>=3.2.2rc1')
else:
install_requires.append('pythondialog>=3.2.2rc1')
# env markers in extras_require cause problems with older pip: #517
# Keep in sync with conditional_requirements.py.
if sys.version_info < (2, 7):