From c43f4fe518b48465b5cb886f2b1df1f3aed17616 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 23 Feb 2021 13:20:04 -0800 Subject: [PATCH] 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. --- windows-installer/construct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'