From 2ca3e1a6f52610f24d48cec78e4fb379f38335c1 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Thu, 7 Nov 2024 23:36:57 +0800 Subject: [PATCH 1/2] Install pandas 2.0 + pyarrow in the Python 3.11 job --- .github/workflows/ci_tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index bcdd3d14304..1aec8e29220 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -85,9 +85,9 @@ jobs: - os: 'ubuntu-latest' python-version: '3.11' # Can't be 3.10 or 3.12. numpy-version: '1.24' - pandas-version: '' + pandas-version: '=2.0' xarray-version: '' - optional-packages: ' geopandas<1' + optional-packages: ' geopandas<1 pyarrow' timeout-minutes: 30 defaults: From 7b83c0e3ae62d7fcac7546f1e92d19bba385a453 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Mon, 11 Nov 2024 10:36:26 +0800 Subject: [PATCH 2/2] Test pandas 2.1 Co-authored-by: Wei Ji <23487320+weiji14@users.noreply.github.com> --- .github/workflows/ci_tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index 1aec8e29220..fb002c0d145 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -85,7 +85,7 @@ jobs: - os: 'ubuntu-latest' python-version: '3.11' # Can't be 3.10 or 3.12. numpy-version: '1.24' - pandas-version: '=2.0' + pandas-version: '=2.1' xarray-version: '' optional-packages: ' geopandas<1 pyarrow'