Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
UFZ GitLab and Mattermost will be
OFFLINE
on
March 27
from
8:00pm
to
10pm
due to a system migration!
Show more breadcrumbs
rdm-software
SaQC
Commits
8b1866df
Commit
8b1866df
authored
2 years ago
by
David Schäfer
Browse files
Options
Downloads
Patches
Plain Diff
Python version support
parent
86fa51ae
No related branches found
No related tags found
3 merge requests
!685
Release 2.4
,
!684
Release 2.4
,
!601
Python version support
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+0
-16
0 additions, 16 deletions
.gitlab-ci.yml
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
3 additions
and
17 deletions
.gitlab-ci.yml
+
0
−
16
View file @
8b1866df
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
2
−
0
View file @
8b1866df
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
8b1866df
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment