We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06279d8 commit 53b81fbCopy full SHA for 53b81fb
.github/workflows/export_to_csv.yml
@@ -24,7 +24,10 @@ jobs:
24
python-version: 3.9
25
- name: Install dependencies
26
run: |
27
- python -m pip install --upgrade pip
+ # 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"
31
pip install pytest wheel numpy
32
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
33
sudo apt-get update
0 commit comments