From 0263979152d1b34b2d250908a7cc49bdbf09855d Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 2 Nov 2021 13:40:05 +0200 Subject: [PATCH] Test on Python 3.10 final --- .github/workflows/deploy-wheels-linux.yml | 4 ++-- .github/workflows/deploy-wheels-windows-macos.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-wheels-linux.yml b/.github/workflows/deploy-wheels-linux.yml index 194086b6..a512f15b 100644 --- a/.github/workflows/deploy-wheels-linux.yml +++ b/.github/workflows/deploy-wheels-linux.yml @@ -25,7 +25,7 @@ jobs: "musllinux_1_1_aarch64", "musllinux_1_1_x86_64", ] - python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9", "3.10-dev"] + python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9", "3.10"] include: # Add version-tag variable to existing jobs - { python-version: "pypy3", version-tag: "pp37-pypy37_pp73" } @@ -33,7 +33,7 @@ jobs: - { python-version: "3.7", version-tag: "cp37-cp37m" } - { python-version: "3.8", version-tag: "cp38-cp38" } - { python-version: "3.9", version-tag: "cp39-cp39" } - - { python-version: "3.10-dev", version-tag: "cp310-cp310" } + - { python-version: "3.10", version-tag: "cp310-cp310" } exclude: # No PyPy3 on musllinux - { python-version: "pypy3", wheel: "musllinux_1_1_aarch64" } diff --git a/.github/workflows/deploy-wheels-windows-macos.yml b/.github/workflows/deploy-wheels-windows-macos.yml index 1e7e5212..63f3a3d1 100644 --- a/.github/workflows/deploy-wheels-windows-macos.yml +++ b/.github/workflows/deploy-wheels-windows-macos.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10-dev"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] architecture: [x64, x86] exclude: - {os: macos-latest, architecture: x86} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c643949..e332536a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10-dev", "pypy3"] + python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] os: [ubuntu-20.04, ubuntu-18.04, macos-latest, windows-2019] exclude: - { python-version: "pypy3", os: macos-latest }