From 2825fc049d8fb756b588f98f52a55897ad208c4d Mon Sep 17 00:00:00 2001 From: David Gamez Diaz <1192523+davidgamez@users.noreply.github.com> Date: Wed, 29 Oct 2025 16:42:52 -0400 Subject: [PATCH 1/2] remove upgrade command --- .github/workflows/export_to_csv.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/export_to_csv.yml b/.github/workflows/export_to_csv.yml index 50a3c7253..49a94dab3 100644 --- a/.github/workflows/export_to_csv.yml +++ b/.github/workflows/export_to_csv.yml @@ -24,7 +24,7 @@ jobs: python-version: 3.9 - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install "pip<24.1" pip install pytest wheel numpy sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable sudo apt-get update From 69d3f1f32f8c2a42ec5bca2b18b4466bb157a542 Mon Sep 17 00:00:00 2001 From: David Gamez <1192523+davidgamez@users.noreply.github.com> Date: Thu, 30 Oct 2025 09:24:22 -0400 Subject: [PATCH 2/2] Update .github/workflows/export_to_csv.yml Co-authored-by: jcpitre <106176106+jcpitre@users.noreply.github.com> --- .github/workflows/export_to_csv.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/export_to_csv.yml b/.github/workflows/export_to_csv.yml index 49a94dab3..40094bc5a 100644 --- a/.github/workflows/export_to_csv.yml +++ b/.github/workflows/export_to_csv.yml @@ -24,6 +24,9 @@ jobs: python-version: 3.9 - name: Install dependencies run: | + # Avoid using the latest version (24.1) of pip since they removed support for the + # --global-option used during GDAL library installation. + # Reconsider later if the problem is corrected. python -m pip install "pip<24.1" pip install pytest wheel numpy sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable