diff --git a/.azure-pipelines/templates/integration-jobs.yml b/.azure-pipelines/templates/integration-jobs.yml index 55762008d..7a49d3986 100644 --- a/.azure-pipelines/templates/integration-jobs.yml +++ b/.azure-pipelines/templates/integration-jobs.yml @@ -9,30 +9,30 @@ jobs: matrix: linux-python-3.6: PYTHON_VERSION: 3.6 - linux-python-3.9-light: - PYTHON_VERSION: 3.9 + linux-python-3.10-light: + PYTHON_VERSION: 3.10 TOXENV: light - linux-python-3.9-cover: - PYTHON_VERSION: 3.9 + linux-python-3.10-cover: + PYTHON_VERSION: 3.10 TOXENV: cover linux-lint: - PYTHON_VERSION: 3.9 + PYTHON_VERSION: 3.10 TOXENV: lint linux-mypy: - PYTHON_VERSION: 3.9 + PYTHON_VERSION: 3.10 TOXENV: mypy macos-python-3.6: IMAGE: macOS-10.15 PYTHON_VERSION: 3.6 - macos-python-3.8: + macos-python-3.10: IMAGE: macOS-10.15 - PYTHON_VERSION: 3.9 + PYTHON_VERSION: 3.10 windows-python-3.6: IMAGE: windows-latest PYTHON_VERSION: 3.6 - windows-python-3.9: + windows-python-3.10: IMAGE: windows-latest - PYTHON_VERSION: 3.9 + PYTHON_VERSION: 3.10 pool: vmImage: $(IMAGE) steps: diff --git a/.azure-pipelines/templates/packaging-jobs.yml b/.azure-pipelines/templates/packaging-jobs.yml index d25b0fc66..2d17fc988 100644 --- a/.azure-pipelines/templates/packaging-jobs.yml +++ b/.azure-pipelines/templates/packaging-jobs.yml @@ -5,7 +5,7 @@ jobs: steps: - task: UsePythonVersion@0 inputs: - versionSpec: 3.8 + versionSpec: 3.10 addToPath: true displayName: Install Python - script: | @@ -31,7 +31,7 @@ jobs: steps: - task: UsePythonVersion@0 inputs: - versionSpec: 3.8 + versionSpec: 3.10 addToPath: true displayName: Install Python - script: | diff --git a/.azure-pipelines/templates/release-jobs.yml b/.azure-pipelines/templates/release-jobs.yml index 1a319e23f..3d486c9eb 100644 --- a/.azure-pipelines/templates/release-jobs.yml +++ b/.azure-pipelines/templates/release-jobs.yml @@ -10,7 +10,7 @@ jobs: displayName: Retrieve Python dist - task: UsePythonVersion@0 inputs: - versionSpec: 3.8 + versionSpec: 3.10 addToPath: true displayName: Install Python - script: | diff --git a/pyproject.toml b/pyproject.toml index a81b4aac2..67da5d42e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ] authors = [ "Jason Kulatunga", "Adrien Ferrand"