Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Ferrand <adferrand@users.noreply.github.com>2019-12-03 00:39:31 +0300
committerBrad Warren <bmw@users.noreply.github.com>2019-12-03 00:39:31 +0300
commit4c652b9c824ce1601309b82e085094243b30e501 (patch)
treec8b56ae61c7c324b3e8f49661cb4e16219fac857 /windows-installer/construct.py
parent84b770b56eb293aa1b026c45d2151e4420b393d9 (diff)
Upgrade to pywin32>=227 (#7615)
Current version of pywin32 used in certbot (225) does not have wheels available for Python 3.8. Installing certbot for development in this case requires to build from source. On Windows, this implies a Visual Studio C++ environment up and ready, which is absolutely not fun. Let's upgrade to pywin32 227, that provides these wheels for all Python versions from 3.5 up to current dev status of 3.9.
Diffstat (limited to 'windows-installer/construct.py')
-rw-r--r--windows-installer/construct.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows-installer/construct.py b/windows-installer/construct.py
index 699786411..192906d79 100644
--- a/windows-installer/construct.py
+++ b/windows-installer/construct.py
@@ -11,7 +11,7 @@ import time
PYTHON_VERSION = (3, 7, 4)
PYTHON_BITNESS = 32
-PYWIN32_VERSION = 225 # do not forget to edit pywin32 dependency accordingly in setup.py
+PYWIN32_VERSION = 227 # do not forget to edit pywin32 dependency accordingly in setup.py
NSIS_VERSION = '3.04'