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

Python version support

parent 86fa51ae
No related branches found
No related tags found
3 merge requests!685Release 2.4,!684Release 2.4,!601Python version support
...@@ -75,20 +75,6 @@ coverage: ...@@ -75,20 +75,6 @@ coverage:
path: coverage.xml path: coverage.xml
# test saqc with python 3.7
python37:
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
artifacts:
when: always
reports:
junit: report.xml
# test saqc with python 3.8
python38: python38:
stage: test stage: test
script: script:
...@@ -100,7 +86,6 @@ python38: ...@@ -100,7 +86,6 @@ python38:
junit: report.xml junit: report.xml
# test saqc with python 3.9
python39: python39:
stage: test stage: test
image: python:3.9 image: python:3.9
...@@ -113,7 +98,6 @@ python39: ...@@ -113,7 +98,6 @@ python39:
junit: report.xml junit: report.xml
# test saqc with python 3.10
python310: python310:
stage: test stage: test
image: python:3.10 image: python:3.10
......
...@@ -11,12 +11,14 @@ SPDX-License-Identifier: GPL-3.0-or-later ...@@ -11,12 +11,14 @@ SPDX-License-Identifier: GPL-3.0-or-later
### Added ### Added
- add option to not overwrite existing flags to `concatFlags` - add option to not overwrite existing flags to `concatFlags`
- add option to pass existing axis object to `plot` - add option to pass existing axis object to `plot`
- python 3.11 support
### Changed ### Changed
- Remove all flag value restrictions from the default flagging scheme `FloatTranslator` - Remove all flag value restrictions from the default flagging scheme `FloatTranslator`
- Renamed `TranslationScheme.forward` to `TranslationScheme.toInternal` - Renamed `TranslationScheme.forward` to `TranslationScheme.toInternal`
- Renamed `TranslationScheme.backward` to `TranslationScheme.toExternal` - Renamed `TranslationScheme.backward` to `TranslationScheme.toExternal`
- Changed Default value of the parameter `limit` for `SaQC.interpolateIndex` and `SaQC.interpolateInvalid` to ``None` - Changed Default value of the parameter `limit` for `SaQC.interpolateIndex` and `SaQC.interpolateInvalid` to ``None`
### Removed ### Removed
- python 3.7 support
### Fixed ### Fixed
## [2.2.1](https://git.ufz.de/rdm-software/saqc/-/tags/v2.2.1) - 2022-10-29 ## [2.2.1](https://git.ufz.de/rdm-software/saqc/-/tags/v2.2.1) - 2022-10-29
......
...@@ -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