summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorrejbasket <39080670+rejbasket@users.noreply.github.com>2024-02-21 16:01:47 +0100
committerGitHub <noreply@github.com>2024-02-21 16:01:47 +0100
commit9b3950137db88715ac55d1e9bebc9aea2db4e83e (patch)
tree8fb187aeb59cc3062586952dfbedba4e64c0c14d /.github
parent3a697187ffbde982377394fc4caace852f00a819 (diff)
Build with shapely with geos 3.12.x (#2732)
authored-by: rejbasket
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0e6726b3..8d8667de 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -86,7 +86,7 @@ jobs:
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
- shell: bash
run: |
- make dist
+ bin/build-linux-dist
env:
BUILD: linux
INKSTITCH_GPG_KEY: ${{ secrets.INKSTITCH_GPG_KEY }}
@@ -128,6 +128,11 @@ jobs:
python -m pip install pyinstaller
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
+ - name: install geos 32
+ shell: cmd
+ run: |
+ SET BUILD32="1"
+ bin\build-geos-win.cmd
- shell: bash
run: |
make dist
@@ -180,6 +185,10 @@ jobs:
python -m pip install pyinstaller
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
+ - name: install geos 64
+ shell: cmd
+ run: |
+ bin\build-geos-win.cmd
- shell: bash
run: |
make dist
@@ -239,6 +248,10 @@ jobs:
# for networkx
pip install pandas
pip install pyarrow
+ # remove and build shapely with brew geos version
+ pip uninstall -y shapely
+ pip cache remove shapely
+ pip install -v shapely --no-binary shapely
pip install pyinstaller