From 741e52c421540d25a39efe42a5e8d96d76554253 Mon Sep 17 00:00:00 2001 From: Gijs van Tulder Date: Thu, 23 May 2024 18:03:37 +0200 Subject: [PATCH] Include Python 3.11 and 3.12 to tests and wheels. --- .github/workflows/test.yml | 2 +- .github/workflows/wheels.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70e4d4d..2ee6e73 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9'] + python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] tensorflow: ['tensorflow'] # the implementation for scipy.ndimage changed in SciPy 1.6.0, # causing some of the tests to fail diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b087a99..2e6c747 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -21,7 +21,8 @@ jobs: - ["cp38", "3.8"] - ["cp39", "3.9"] - ["cp310", "3.10"] - - ["cp311", "3.11.0-alpha - 3.11.0"] + - ["cp311", "3.11"] + - ["cp312", "3.12"] steps: - uses: actions/checkout@v3