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: ...@@ -134,12 +134,39 @@ doctest:
# Building stage # Building stage
# =========================================================== # ===========================================================
# check if we are able to build a wheel # check if we are able to build a wheel
wheel: # and if the import works
wheel38:
stage: build 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: script:
- pip install wheel - pip install wheel
- pip wheel . - pip wheel .
- pip install . - pip install .
- python -c 'import saqc; print(f"{saqc.__version__=}")'
docs: docs:
stage: build stage: build
......
...@@ -39,7 +39,7 @@ setup( ...@@ -39,7 +39,7 @@ setup(
"numpy", "numpy",
"outlier-utils", "outlier-utils",
"pyarrow", "pyarrow",
"pandas", "pandas>=2.0.0",
"scikit-learn", "scikit-learn",
"scipy", "scipy",
"typing_extensions", "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