From 9dfe0cd54778b0b78a6cbb3e8b61816c528d3ad9 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Thu, 19 Nov 2020 00:26:34 +0100 Subject: [PATCH] Enable windows tests on Python 3.8 and package it on Python 3.8 also. --- .azure-pipelines/templates/jobs/packaging-jobs.yml | 2 +- .azure-pipelines/templates/jobs/standard-tests-jobs.yml | 6 +++--- windows-installer/construct.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.azure-pipelines/templates/jobs/packaging-jobs.yml b/.azure-pipelines/templates/jobs/packaging-jobs.yml index f0c6b6e49..fc2a5e1f5 100644 --- a/.azure-pipelines/templates/jobs/packaging-jobs.yml +++ b/.azure-pipelines/templates/jobs/packaging-jobs.yml @@ -56,7 +56,7 @@ jobs: steps: - task: UsePythonVersion@0 inputs: - versionSpec: 3.7 + versionSpec: 3.8 architecture: x86 addToPath: true - script: python windows-installer/construct.py diff --git a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml index 7a1f620bb..a5a44a402 100644 --- a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml +++ b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml @@ -18,11 +18,11 @@ jobs: TOXENV: py36 windows-py37-cover: IMAGE_NAME: vs2017-win2016 - PYTHON_VERSION: 3.7 - TOXENV: py37-cover + PYTHON_VERSION: 3.8 + TOXENV: py38-cover windows-integration-certbot: IMAGE_NAME: vs2017-win2016 - PYTHON_VERSION: 3.7 + PYTHON_VERSION: 3.8 TOXENV: integration-certbot linux-oldest-tests-1: IMAGE_NAME: ubuntu-18.04 diff --git a/windows-installer/construct.py b/windows-installer/construct.py index 14f770959..a54f1e854 100644 --- a/windows-installer/construct.py +++ b/windows-installer/construct.py @@ -9,7 +9,7 @@ import sys import tempfile import time -PYTHON_VERSION = (3, 7, 4) +PYTHON_VERSION = (3, 8, 6) PYTHON_BITNESS = 32 PYWIN32_VERSION = 227 # do not forget to edit pywin32 dependency accordingly in setup.py NSIS_VERSION = '3.04'