Skip to content

Commit c0ec4fc

Browse files
committed
Updated python version requirement to 3.8
1 parent 0eb91fa commit c0ec4fc

File tree

5 files changed

+243
-169
lines changed

5 files changed

+243
-169
lines changed

.github/workflows/ci_env.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
- uses: conda-incubator/setup-miniconda@v2
1919
with:
2020
auto-update-conda: true
21-
python-version: 3.7
21+
python-version: 3.8
2222
- name: Conda info
2323
shell: bash -el {0}
2424
run: conda info
2525
- name: Install python and gcc
2626
shell: bash -el {0}
2727
run: |
28-
conda install -c conda-forge python=3.7
28+
conda install -c conda-forge python=3.8
2929
conda install -c conda-forge gcc=12.1.0
3030
- name: Install gdal and pcraster
3131
shell: bash -el {0}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can use conda environment to easily install dependencies.
2424
* Create a conda env named "lisflood" and install dependencies:
2525

2626
```bash
27-
conda create --name lisflood python=3.7 -c conda-forge
27+
conda create --name lisflood python=3.8 -c conda-forge
2828
conda activate lisflood
2929
conda install -c conda-forge pcraster gdal
3030
```
@@ -51,7 +51,7 @@ git clone --single-branch --branch master https://github.com/ec-jrc/lisflood-cod
5151
* **Install requirements into a python 3 conda env**
5252

5353
```bash
54-
conda create --name lisflood python=3.7 -c conda-forge
54+
conda create --name lisflood python=3.8 -c conda-forge
5555
conda activate lisflood
5656
conda install -c conda-forge pcraster gdal
5757
cd lisflood-code

docs/3_step2_installation/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Using conda environment is very handy since installing latest PCRaster and its d
5656
1. Install [miniconda](https://docs.conda.io/en/latest/miniconda.html)
5757
2. Create a conda env named "lisflood" and install dependencies:
5858
```
59-
conda create --name lisflood python=3.7 -c conda-forge
59+
conda create --name lisflood python=3.8 -c conda-forge
6060
conda activate lisflood
6161
conda install -c conda-forge pcraster
6262
pip install lisflood-model
@@ -84,7 +84,7 @@ Follow this instruction for a basic test (some sample catchments are included in
8484
2. **Install requirements into a python 3 conda env**
8585

8686
```bash
87-
conda create --name lisflood python=3.7 -c conda-forge
87+
conda create --name lisflood python=3.8 -c conda-forge
8888
conda activate lisflood
8989
conda install -c conda-forge pcraster
9090
cd lisflood-code

envflex.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: lisflood
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.7
5+
- python=3.8
66
- pcraster
77
- gdal
88
- pip

0 commit comments

Comments
 (0)