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: ...@@ -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