File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,26 @@ jobs:
254
254
apt-get update
255
255
apt-get install -y libfreetype6-dev libpng12-dev
256
256
if : matrix.arch == 'x86' && matrix.python-version == '3.5'
257
+ -
258
+ name : Install pyproj manually
259
+ run : |
260
+ apt-get update
261
+ apt-get install -y proj-bin libproj-dev
262
+ python -m pip install cython
263
+ pkgname=pyproj
264
+ pkgvers=${{ env.pyproj-version }}
265
+ pkgcode=${pkgname}-${pkgvers}
266
+ python -m pip download "pyproj == ${pkgvers}"
267
+ tar -xf ${pkgcode}.tar.gz
268
+ rm -rf ${pkgcode}.tar.gz
269
+ cd ${pkgcode}
270
+ rm _proj.c
271
+ python -m pip install .
272
+ cd ..
273
+ rm -rf ${pkgcode}
274
+ if : matrix.python-version == '3.9'
275
+ env :
276
+ pyproj-version : 1.9.6
257
277
-
258
278
name : Install package
259
279
run : |
You can’t perform that action at this time.
0 commit comments