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: ...@@ -75,10 +75,8 @@ coverage:
path: coverage.xml path: coverage.xml
# test saqc with python 3.7 python38:
python37:
stage: test stage: test
image: python:3.7
script: script:
- pytest tests dios/test -Werror --junitxml=report.xml - 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 - python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
...@@ -88,9 +86,9 @@ python37: ...@@ -88,9 +86,9 @@ python37:
junit: report.xml junit: report.xml
# test saqc with python 3.8 python39:
python38:
stage: test stage: test
image: python:3.9
script: script:
- pytest tests dios/test -Werror --junitxml=report.xml - 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 - python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
...@@ -100,10 +98,9 @@ python38: ...@@ -100,10 +98,9 @@ python38:
junit: report.xml junit: report.xml
# test saqc with python 3.9 python310:
python39:
stage: test stage: test
image: python:3.9 image: python:3.10
script: script:
- pytest tests dios/test -Werror --junitxml=report.xml - 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 - python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
...@@ -113,10 +110,9 @@ python39: ...@@ -113,10 +110,9 @@ python39:
junit: report.xml junit: report.xml
# test saqc with python 3.10 python311:
python310:
stage: test stage: test
image: python:3.10 image: python:3.11
script: script:
- pytest tests dios/test -Werror --junitxml=report.xml - 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 - python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
......
...@@ -28,7 +28,7 @@ setup( ...@@ -28,7 +28,7 @@ setup(
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm-software/saqc", url="https://git.ufz.de/rdm-software/saqc",
packages=find_packages(exclude=("tests", "docs")), packages=find_packages(exclude=("tests", "docs")),
python_requires=">=3.7", python_requires=">=3.8",
install_requires=[ install_requires=[
"Click", "Click",
"dtw", "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