Skip to content

Commit 2085c50

Browse files
committed
geos
1 parent 283a17c commit 2085c50

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

.github/workflows/build-linux.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

29+
- name: Install prerequisites
30+
run: sudo apt install libgeos3.10.2 libgeos-dev -y
31+
2932
- name: Install package and dependencies
3033
run: |
3134
python -m pip install --upgrade pip

.github/workflows/deploy-conda.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
miniconda-version: "latest"
3030
auto-update-conda: true
3131

32+
- name: Install prerequisites
33+
run: sudo apt install libgeos3.10.2 libgeos-dev -y
34+
3235
- name: Build and upload package
3336
shell: bash -el {0}
3437
run: |

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
with:
2121
python-version: '3.11'
2222

23+
- name: Install prerequisites
24+
run: sudo apt install libgeos3.10.2 libgeos-dev -y
25+
2326
# Compile package with in-source build
2427
# Use force-reinstall to downgrade matplotlib if necessary to be compatible with seaborn
2528
- name: Install

.github/workflows/deploy-pypi.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
python -m pip install --upgrade twine
2929
python -m pip install --upgrade wheel
3030
31+
- name: Install prerequisites
32+
run: sudo apt install libgeos3.10.2 libgeos-dev -y
33+
3134
- name: Build distribution
3235
run: |
3336
python setup.py sdist

0 commit comments

Comments
 (0)