From 16282e8e85c7212564cb36674bf1406c6f2d3ea6 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Fri, 19 Apr 2024 11:54:40 +0100 Subject: [PATCH] .gitlab-ci.yml: Test on Python 3.9 and 3.11 Drop 3.8 testing as Sphinx does not support it anymore and will now be stuck at an old version, so we cannot have a stable man page generation that provides the same result across all builds. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e542a04b..182376be4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,7 +54,7 @@ Test: - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH parallel: matrix: - - PYVERSION: [8, 11] + - PYVERSION: [9, 11] 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