mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
Sometimes, double-quote is the solution
This commit is contained in:
parent
6a8fcfd8ba
commit
c1040e3629
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -59,7 +59,7 @@ install_requires = [
|
|||
# So this dependency is not added for old Linux distributions with old setuptools,
|
||||
# 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\'')
|
||||
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.')
|
||||
|
|
|
|||
Loading…
Reference in a new issue