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

Merge branch 'py_verions_drop' into 'develop'

Python version support

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