Skip to content
Snippets Groups Projects
Commit 97918e38 authored by David Schäfer's avatar David Schäfer
Browse files

drop python 3.7 and add python 3.11 support

parent 86fa51ae
No related branches found
No related tags found
2 merge requests!602Version bumps,!601Python version support
Pipeline #143525 failed with stages
in 4 minutes and 17 seconds
......@@ -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
......
......@@ -28,7 +28,7 @@ setup(
long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm-software/saqc",
packages=find_packages(exclude=("tests", "docs")),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"Click",
"dtw",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment