Upgrade to pywin32>=225 and fix unit tests (#7429)

Fixes #7426
This commit is contained in:
Adrien Ferrand
2019-10-08 16:17:08 -07:00
committed by Brad Warren
parent f755cfef48
commit ec3ec9068c
4 changed files with 7 additions and 15 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ install_requires = [
# However environment markers are supported only with setuptools >= 36.2.
# So this dependency is not added for old Linux distributions with old setuptools,
# in order to allow these systems to build certbot from sources.
pywin32_req = 'pywin32>=224'
pywin32_req = 'pywin32>=225'
if StrictVersion(setuptools_version) >= StrictVersion('36.2'):
install_requires.append(pywin32_req + " ; sys_platform == 'win32'")
elif 'bdist_wheel' in sys.argv[1:]: