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-04-05 21:15:09 +0300
committerGitHub <noreply@github.com>2021-04-05 21:15:09 +0300
commit33f177b361bfa5938da0c726dc3ee7582faf878e (patch)
tree2de8a1e23819faf62b30d8a2dad0bcce5c983c37 /windows-installer
parent69479b72771fceabc3caa93152c8b2e1a7d1ae6b (diff)
Upgrade Python to 3.8.9. (#8775)
Over the weekend, Python released new versions of Python 3.8 and Python 3.9 partially in response to the OpenSSL CVEs discussed at https://github.com/certbot/certbot/pull/8741#issuecomment-809644789. You can see this mentioned in their changelog at https://docs.python.org/release/3.8.9/whatsnew/changelog.html#build. This PR updates the windows installer to use that new release so all of our distribution methods that contain their own copy of OpenSSL are patched for the release tomorrow. You can see tests passing with this change at https://dev.azure.com/certbot/certbot/_build/results?buildId=3751&view=results. You can see Python 3.8.9 being downloaded instead of an older version at https://dev.azure.com/certbot/certbot/_build/results?buildId=3751&view=logs&j=ad29f110-3cce-5317-4ef2-0a692ae1dee7&t=901eeead-396c-5477-aba2-f402fdcfb885&l=1055.
Diffstat (limited to 'windows-installer')
-rw-r--r--windows-installer/windows_installer/construct.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows-installer/windows_installer/construct.py b/windows-installer/windows_installer/construct.py
index 983923049..91df6b714 100644
--- a/windows-installer/windows_installer/construct.py
+++ b/windows-installer/windows_installer/construct.py
@@ -7,7 +7,7 @@ import subprocess
import sys
import time
-PYTHON_VERSION = (3, 8, 8)
+PYTHON_VERSION = (3, 8, 9)
PYTHON_BITNESS = 32
NSIS_VERSION = '3.06.1'