From d698e8d2d8c7cd41d9a491d7464952d82715e082 Mon Sep 17 00:00:00 2001
From: Bert Palm <bert.palm@ufz.de>
Date: Tue, 20 Jun 2023 11:50:47 +0200
Subject: [PATCH] pandas>=2.0.0

---
 .gitlab-ci.yml | 29 ++++++++++++++++++++++++++++-
 setup.py       |  2 +-
 2 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5ec3f39d0..5e5ab6017 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -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
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