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

pandas>=2.0.0

parent 4494a478
No related branches found
No related tags found
1 merge request!704pandas>=2.0.0
......@@ -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