mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 08:45:22 +02:00
Revert PR #708.
https://github.com/letsencrypt/letsencrypt/pull/708 broke the Boulder CI build because Travis runs Ubuntu 12.04, which has an older setuptools. See https://github.com/letsencrypt/boulder/issues/681.
This commit is contained in:
@@ -6,17 +6,17 @@ from setuptools import find_packages
|
||||
|
||||
install_requires = []
|
||||
if sys.version_info < (2, 7):
|
||||
install_requires.append('mock<1.1.0')
|
||||
install_requires.append("mock<1.1.0")
|
||||
else:
|
||||
install_requires.append('mock')
|
||||
install_requires.append("mock")
|
||||
|
||||
setup(
|
||||
name='letshelp-letsencrypt',
|
||||
name="letshelp-letsencrypt",
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'letshelp-letsencrypt-apache = letshelp_letsencrypt.apache:main',
|
||||
"letshelp-letsencrypt-apache = letshelp_letsencrypt.apache:main",
|
||||
],
|
||||
},
|
||||
include_package_data=True,
|
||||
|
||||
Reference in New Issue
Block a user