From 39260e8eb9e8480051f3be6561003f935bb36e6d Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Mon, 15 Jan 2024 10:10:31 +0000 Subject: [PATCH] .gitlab-ci.yml: Test on Python 3.12 Test on 3.8 (minimum supported version) and 3.12 --- .github/workflows/test.yml | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b29f776eb..9f2ea90b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: # Github seems to always block 3 jobs these days, so keep at most 3 # versions there: - '3.8' - - '3.11' + - '3.12' # env: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e542a04b..629aa1d2c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ default: # Required for Manual runs through UI variables: PYVERSION: - value: 11 + value: 12 description: Default version of Python to use for non-test jobs WEB_SKIP_TEST: @@ -54,7 +54,7 @@ Test: - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH parallel: matrix: - - PYVERSION: [8, 11] + - PYVERSION: [8, 12] before_script: # Make the test a no-op so we can run any step depending on successful tests - if [[ "$CI_PIPELINE_SOURCE" == "web" && "$WEB_SKIP_TEST" == "True" ]]; then exit 0; fi -- GitLab