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 4121440 commit 66535acCopy full SHA for 66535ac
.github/workflows/basemap-for-manylinux.yml
@@ -103,6 +103,13 @@ jobs:
103
. /etc/profile
104
apt-get update
105
apt-get install -y gcc g++ make
106
+ -
107
+ name: Install unzip
108
+ run: |
109
+ set -e
110
+ . /etc/profile
111
+ apt-get update
112
+ apt-get install -y unzip
113
-
114
name: Generate NumPy headers
115
run: |
@@ -115,8 +122,8 @@ jobs:
122
pkgname=numpy
116
123
pkgcode=numpy-${pkgvers}
117
124
python -m pip download --no-binary=:all: "numpy == ${pkgvers}"
118
- tar -xf ${pkgcode}.tar.gz
119
- rm -f ${pkgcode}.tar.gz
125
+ unzip ${pkgcode}.zip
126
+ rm -f ${pkgcode}.zip
120
127
cd ${pkgcode}
121
128
python setup.py build
129
cp build/src*/numpy/core/include/numpy/*.h numpy/core/include/numpy/
0 commit comments