Skip to content

Commit d34b8bd

Browse files
committed
Workaround for GDAL
1 parent fcb8424 commit d34b8bd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ jobs:
8282
- name: Install
8383
shell: bash
8484
run: |
85-
python -m pip install dist/${PACKAGE}*.whl
85+
echo "-- Temporary workaround: gdal is not easily installavle via pip"
86+
echo "-- It will be possible to remove the workaround once PR gh-5 will be merged"
87+
python -m pip install pandas xarray dask scipy netcdf4 matplotlib
88+
python -m pip install --no-deps dist/${PACKAGE}*.whl
8689
8790
- name: Install test dependencies
8891
shell: bash

0 commit comments

Comments
 (0)