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.
This commit is contained in:
Brad Warren 2021-02-23 13:20:04 -08:00 committed by GitHub
parent 0f3f07b5cb
commit c43f4fe518
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'