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 <ferrand.ad@gmail.com>2021-10-02 15:25:12 +0300
committerAdrien Ferrand <ferrand.ad@gmail.com>2021-10-02 15:25:12 +0300
commit0c83ec5dfce7daedc2dc5850b51f4895541466a7 (patch)
tree7693fcd5e69650b0f889b9946225521a0dc23bdd
parentcde3e1fa9774d508159812b96dc56b2f302d16e0 (diff)
Support Python 3.9 on Windows and package installer on ittest-window-py39
-rw-r--r--.azure-pipelines/templates/jobs/packaging-jobs.yml4
-rw-r--r--.azure-pipelines/templates/jobs/standard-tests-jobs.yml8
-rw-r--r--windows-installer/windows_installer/construct.py2
3 files changed, 7 insertions, 7 deletions
diff --git a/.azure-pipelines/templates/jobs/packaging-jobs.yml b/.azure-pipelines/templates/jobs/packaging-jobs.yml
index 005b5ef48..cfd817c8b 100644
--- a/.azure-pipelines/templates/jobs/packaging-jobs.yml
+++ b/.azure-pipelines/templates/jobs/packaging-jobs.yml
@@ -59,7 +59,7 @@ jobs:
steps:
- task: UsePythonVersion@0
inputs:
- versionSpec: 3.8
+ versionSpec: 3.9
architecture: x86
addToPath: true
- script: |
@@ -100,7 +100,7 @@ jobs:
displayName: Check Powershell 5.x is used in vs2017-win2016
- task: UsePythonVersion@0
inputs:
- versionSpec: 3.8
+ versionSpec: 3.9
addToPath: true
- task: DownloadPipelineArtifact@2
inputs:
diff --git a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml
index da914dd47..f21be20f0 100644
--- a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml
+++ b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml
@@ -16,13 +16,13 @@ jobs:
IMAGE_NAME: vs2017-win2016
PYTHON_VERSION: 3.6
TOXENV: py36-win
- windows-py38-cover:
+ windows-py39-cover:
IMAGE_NAME: vs2017-win2016
- PYTHON_VERSION: 3.8
- TOXENV: py38-cover-win
+ PYTHON_VERSION: 3.9
+ TOXENV: py39-cover-win
windows-integration-certbot:
IMAGE_NAME: vs2017-win2016
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
TOXENV: integration-certbot
linux-oldest-tests-1:
IMAGE_NAME: ubuntu-18.04
diff --git a/windows-installer/windows_installer/construct.py b/windows-installer/windows_installer/construct.py
index 3c2525dc8..e9036f08c 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, 9)
+PYTHON_VERSION = (3, 9, 7)
PYTHON_BITNESS = 32
NSIS_VERSION = '3.06.1'