From 111630ccdfa686d2e08c6d2745b225b31aa1497e Mon Sep 17 00:00:00 2001 From: Bert Palm <bert.palm@ufz.de> Date: Mon, 19 Jun 2023 20:54:06 +0200 Subject: [PATCH] pinned version of pandas>2, improved CI wheel-test --- .gitlab-ci.yml | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5ec3f39d0..d5128ca27 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -134,12 +134,14 @@ doctest: # Building stage # =========================================================== # check if we are able to build a wheel +# and if the import works wheel: stage: build script: - pip install wheel - pip wheel . - pip install . + - python -c 'import saqc; print(f"{saqc.__version__=}")' docs: stage: build diff --git a/setup.py b/setup.py index f1b595bab..1d92394d0 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( "numpy", "outlier-utils", "pyarrow", - "pandas", + "pandas>=2.0.0", "scikit-learn", "scipy", "typing_extensions", -- GitLab