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:
authorBrad Warren <bmw@users.noreply.github.com>2021-02-24 00:20:04 +0300
committerGitHub <noreply@github.com>2021-02-24 00:20:04 +0300
commitc43f4fe518b48465b5cb886f2b1df1f3aed17616 (patch)
tree38dcaa94e4380d4e58fe2291aacd85aaf26283a0 /windows-installer
parent0f3f07b5cb3bf1d2c3d8834a83022fd11d7566fc (diff)
upgrade to 3.8.8 (#8682)
Fixes https://github.com/certbot/certbot/issues/8681. https://python-security.readthedocs.io/vuln/ctypes-buffer-overflow-pycarg_repr.html is the best resource I found linking to the original Python bug, when each Python branch was fixed, etc.
Diffstat (limited to 'windows-installer')
-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 0684b3c25..60834e7e5 100644
--- a/windows-installer/construct.py
+++ b/windows-installer/construct.py
@@ -9,7 +9,7 @@ import sys
import tempfile
import time
-PYTHON_VERSION = (3, 8, 6)
+PYTHON_VERSION = (3, 8, 8)
PYTHON_BITNESS = 32
PYWIN32_VERSION = 300 # do not forget to edit pywin32 dependency accordingly in setup.py
NSIS_VERSION = '3.06.1'