Skip to content

Commit 53b81fb

Browse files
authored
fix: failing pip installation in export to csv (#1101)
1 parent 06279d8 commit 53b81fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/export_to_csv.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
python-version: 3.9
2525
- name: Install dependencies
2626
run: |
27-
python -m pip install --upgrade pip
27+
# Avoid using the latest version (24.1) of pip since they removed support for the
28+
# --global-option used during GDAL library installation.
29+
# Reconsider later if the problem is corrected.
30+
python -m pip install "pip<24.1"
2831
pip install pytest wheel numpy
2932
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
3033
sudo apt-get update

0 commit comments

Comments
 (0)