Skip to content
Snippets Groups Projects

CI: Switch default Python version to 3.12 (#196)

Merged Moul requested to merge 196_py_3_12 into main
2 files
+ 15
16
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 7
8
@@ -6,7 +6,7 @@ stages:
variables:
DOCKER_IMAGE: "registry.duniter.org/docker/python3/poetry"
PYTHON_VERSION: "3.11"
PYTHON_VERSION: "3.12"
image: $DOCKER_IMAGE/$PYTHON_VERSION:latest
@@ -123,7 +123,12 @@ tests:3.10:
variables:
PYTHON_VERSION: "3.10"
tests:3.11:cov:
tests:3.11:
extends: .tests
variables:
PYTHON_VERSION: "3.11"
tests:3.12:cov:
extends: .tests
coverage: '/(?i)total.*\s+(\d+%)/'
script:
@@ -139,12 +144,6 @@ tests:3.11:cov:
coverage_format: cobertura
path: coverage.xml
tests:3.12:
extends: .tests
variables:
PYTHON_VERSION: "3.12"
allow_failure: true
release:
stage: release
script:
Loading