From 63539262f6edc71ee1c7e99f1179fd115749131e Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Thu, 26 Sep 2024 13:27:57 +0800 Subject: [PATCH] CI: Add a separate CI job on Ubuntu to test geopandas v0.x (#3420) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Yvonne Fröhlich <94163266+yvonnefroehlich@users.noreply.github.com> Co-authored-by: Wei Ji <23487320+weiji14@users.noreply.github.com> --- .github/workflows/ci_tests.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index e271c3cd51c..0b0d3d20d79 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -79,6 +79,15 @@ jobs: pandas-version: '' xarray-version: '' optional-packages: ' contextily geopandas ipython pyarrow rioxarray sphinx-gallery' + # The job below is for testing geopandas v0.x on Ubuntu. + # The python-version here can't be the versions in the matrix.python-version + # defined above. Otherwise, other jobs will be overridden by this one. + - os: 'ubuntu-latest' + python-version: '3.11' # Can't be 3.10 or 3.12. + numpy-version: '1.24' + pandas-version: '' + xarray-version: '' + optional-packages: ' geopandas<1' timeout-minutes: 30 defaults: