Skip to content
Snippets Groups Projects

Python version support

Merged David Schäfer requested to merge py_verions_drop into develop
Files
2
+ 7
11
@@ -75,10 +75,8 @@ coverage:
path: coverage.xml
# test saqc with python 3.7
python37:
python38:
stage: test
image: python:3.7
script:
- pytest tests dios/test -Werror --junitxml=report.xml
- python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
@@ -88,9 +86,9 @@ python37:
junit: report.xml
# test saqc with python 3.8
python38:
python39:
stage: test
image: python:3.9
script:
- pytest tests dios/test -Werror --junitxml=report.xml
- python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
@@ -100,10 +98,9 @@ python38:
junit: report.xml
# test saqc with python 3.9
python39:
python310:
stage: test
image: python:3.9
image: python:3.10
script:
- pytest tests dios/test -Werror --junitxml=report.xml
- python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
@@ -113,10 +110,9 @@ python39:
junit: report.xml
# test saqc with python 3.10
python310:
python311:
stage: test
image: python:3.10
image: python:3.11
script:
- pytest tests dios/test -Werror --junitxml=report.xml
- python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
Loading