Skip to content
Snippets Groups Projects
Commit 2de4a7a8 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

Merge branch 'force_pandas2' into 'develop'

pandas>=2.0.0

See merge request !704
parents cd1ac6ba d698e8d2
No related branches found
No related tags found
1 merge request!704pandas>=2.0.0
Pipeline #175574 passed with stages
in 10 minutes and 37 seconds
......@@ -134,12 +134,39 @@ doctest:
# Building stage
# ===========================================================
# check if we are able to build a wheel
wheel:
# and if the import works
wheel38:
stage: build
image: python:3.8
script:
- pip install wheel
- pip wheel .
- pip install .
- python -c 'import saqc; print(f"{saqc.__version__=}")'
wheel39:
stage: build
image: python:3.9
script:
- pip install wheel
- pip wheel .
- pip install .
- python -c 'import saqc; print(f"{saqc.__version__=}")'
wheel310:
stage: build
image: python:3.10
script:
- pip install wheel
- pip wheel .
- pip install .
- python -c 'import saqc; print(f"{saqc.__version__=}")'
wheel311:
stage: build
image: python:3.11
script:
- pip install wheel
- pip wheel .
- pip install .
- python -c 'import saqc; print(f"{saqc.__version__=}")'
docs:
stage: build
......
......@@ -39,7 +39,7 @@ setup(
"numpy",
"outlier-utils",
"pyarrow",
"pandas",
"pandas>=2.0.0",
"scikit-learn",
"scipy",
"typing_extensions",
......
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