Skip to content

Commit 6238e6f

Browse files
committed
Limit GDAL version to avoid mask map issues in lisflood-utilities writers
1 parent 80365e2 commit 6238e6f

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/ci_env.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install gdal and pcraster
3131
shell: bash -el {0}
3232
run: |
33-
conda install -c conda-forge gdal pcraster
33+
conda install -c conda-forge "gdal<=3.5.3" pcraster
3434
- name: Install dependencies
3535
shell: bash -el {0}
3636
run: |

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can use conda environment to easily install dependencies.
2626
```bash
2727
conda create --name lisflood python=3.8 -c conda-forge
2828
conda activate lisflood
29-
conda install -c conda-forge pcraster gdal
29+
conda install -c conda-forge pcraster "gdal<=3.5.3"
3030
```
3131

3232
* Install lisflood-model pypi package
@@ -53,7 +53,7 @@ git clone --single-branch --branch master https://github.com/ec-jrc/lisflood-cod
5353
```bash
5454
conda create --name lisflood python=3.8 -c conda-forge
5555
conda activate lisflood
56-
conda install -c conda-forge pcraster gdal
56+
conda install -c conda-forge pcraster "gdal<=3.5.3"
5757
cd lisflood-code
5858
pip install -r requirements.txt
5959
```

docs/3_step2_installation/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Follow this instruction for a basic test (some sample catchments are included in
8686
```bash
8787
conda create --name lisflood python=3.8 -c conda-forge
8888
conda activate lisflood
89-
conda install -c conda-forge pcraster
89+
conda install -c conda-forge pcraster "gdal<=3.5.3"
9090
cd lisflood-code
9191
pip install -r requirements.txt
9292
```

envflex.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ channels:
44
dependencies:
55
- python=3.8
66
- pcraster
7-
- gdal
7+
- gdal<=3.5.3
88
- pip

requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ cftime>=1.0.4.2
44
coverage>=6.0
55
dask>=2021.10.0
66
future>=0.18.0
7-
#GDAL==3.5.3
8-
GDAL>=3.2.0
7+
GDAL>=3.2.0,<= 3.5.3
98
importlib-metadata<5.0.0
109
iniconfig>=1.1.1
1110
lisflood-utilities>=0.12.19

0 commit comments

Comments
 (0)