mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Ensure we are not building wheels using an old version of setuptools
This commit is contained in:
parent
d43d293fb6
commit
7d1ced2aa0
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
|
@ -60,6 +60,9 @@ install_requires = [
|
|||
# in order to allow these systems to build certbot from sources.
|
||||
if StrictVersion(setuptools_version) >= StrictVersion('36.2'):
|
||||
install_requires.append('pywin32 ; sys_platform == \'win32\'')
|
||||
elif 'bdist_wheel' in sys.argv[1:]:
|
||||
raise RuntimeError('Error, you are trying to build certbot wheels using an old version '
|
||||
'of setuptools. Version 36.2+ of setuptools is required.')
|
||||
|
||||
dev_extras = [
|
||||
'astroid==1.6.5',
|
||||
|
|
|
|||
Loading…
Reference in a new issue