From: Aleš Mrázek Date: Mon, 19 Feb 2024 15:16:04 +0000 (+0100) Subject: manager: ci: switch to python 3.12 X-Git-Tag: v6.0.7~20^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9cdb02938da7d70c1dc257769dd3769b169ee25;p=thirdparty%2Fknot-resolver.git manager: ci: switch to python 3.12 --- diff --git a/manager/.gitlab-ci.yml b/manager/.gitlab-ci.yml index 5af6efb6b..851914d22 100644 --- a/manager/.gitlab-ci.yml +++ b/manager/.gitlab-ci.yml @@ -12,21 +12,21 @@ default: - linux - amd64 -examples:py3.11: +examples:py3.12: stage: check script: - poetry install --only main,dev - poe examples variables: - PYTHON_INTERPRETER: python3.11 + PYTHON_INTERPRETER: python3.12 -lint:py3.11: +lint:py3.12: stage: check script: - poetry install --only main,dev,lint - poe check variables: - PYTHON_INTERPRETER: python3.11 + PYTHON_INTERPRETER: python3.12 .unit: &unit stage: check @@ -64,4 +64,9 @@ unit:py3.10: unit:py3.11: <<: *unit variables: - PYTHON_INTERPRETER: python3.11 \ No newline at end of file + PYTHON_INTERPRETER: python3.11 + +unit:py3.12: + <<: *unit + variables: + PYTHON_INTERPRETER: python3.12