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:
Jacob Hoffman-Andrews
2015-08-27 13:38:32 -07:00
parent 89c94ccfbb
commit 70e311b43f
6 changed files with 13 additions and 39 deletions
+1 -7
View File
@@ -1,5 +1,3 @@
import sys
from setuptools import setup
from setuptools import find_packages
@@ -7,16 +5,12 @@ from setuptools import find_packages
install_requires = [
'acme',
'letsencrypt',
'mock<1.1.0', # py26
'python-augeas',
'zope.component',
'zope.interface',
]
if sys.version_info < (2, 7):
install_requires.append('mock<1.1.0')
else:
install_requires.append('mock')
setup(
name='letsencrypt-apache',
packages=find_packages(),