Skip to content

Commit dab071a

Browse files
committed
Install GCC when testing basemap on Python 2.7
Unfortunately, this is required because `matplotlib` relies internally on the `subprocess32` backport, which needs to be compiled, and for which no pre-compiled manylinux1 binary wheels are available.
1 parent a7a1cef commit dab071a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/basemap-for-manylinux.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ jobs:
246246
with:
247247
name: artifacts-build-${{ matrix.arch }}-${{ matrix.python-version }}
248248
path: ${{ env.PKGDIR }}/dist
249+
-
250+
name: Install GCC toolchain
251+
run: |
252+
apt-get update
253+
apt-get install -y gcc g++ make
249254
-
250255
name: Install package
251256
run: |

0 commit comments

Comments
 (0)