Skip to content

Commit fbf8eba

Browse files
committed
Make basemap workflow download numpy with pip
1 parent d5470d5 commit fbf8eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/basemap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
esac
126126
pkgname=numpy
127127
pkgcode=numpy-${pkgvers}
128-
wget https://github.com/numpy/${pkgname}/releases/download/v${pkgvers}/${pkgcode}.tar.gz
128+
python -m pip download --no-binary=:all: "numpy == ${pkgvers}"
129129
tar -xf ${pkgcode}.tar.gz
130130
rm -f ${pkgcode}.tar.gz
131131
cd ${pkgcode}

0 commit comments

Comments
 (0)