mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Support Python 3.9 on Windows and package installer on it
This commit is contained in:
parent
cde3e1fa97
commit
0c83ec5dfc
3 changed files with 7 additions and 7 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue