From ed34c362a6fb0115ed8d20030d696d4eca318f5b Mon Sep 17 00:00:00 2001 From: Danilo Lessa Bernardineli Date: Tue, 11 Nov 2025 17:17:38 -0300 Subject: [PATCH 1/3] Update README.md for suggesting a Python 3.12 environment rather than 3.7 As of today, Conda supports Python versions from 3.10 to 3.13. Trying to pass `python=3.7` gives an error message. Some packages won't allow installing if Py>=3.13, therefore I chose the latest Py version that would install everything successfully. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2abad27b..f74c4ab1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ You can use conda environment to easily install dependencies. * Create a conda env named "lisflood" and install dependencies: ```bash -conda create --name lisflood python=3.7 -c conda-forge +conda create --name lisflood python=3.12 -c conda-forge conda activate lisflood conda install -c conda-forge pcraster gdal ``` From e63478f8485f558196e8fd27a84a015c4a07de74 Mon Sep 17 00:00:00 2001 From: Danilo Lessa Bernardineli Date: Tue, 11 Nov 2025 17:21:26 -0300 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f74c4ab1..e0f489bf 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ git clone --single-branch --branch master https://github.com/ec-jrc/lisflood-cod * **Install requirements into a python 3 conda env** ```bash -conda create --name lisflood python=3.7 -c conda-forge +conda create --name lisflood python=3.12 -c conda-forge conda activate lisflood conda install -c conda-forge pcraster gdal cd lisflood-code From de867631d9bf372505b0a9101cc3e9402d46f44d Mon Sep 17 00:00:00 2001 From: Danilo Lessa Bernardineli Date: Tue, 11 Nov 2025 18:01:16 -0300 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e0f489bf..ee49c765 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ You can use conda environment to easily install dependencies. * Create a conda env named "lisflood" and install dependencies: ```bash -conda create --name lisflood python=3.12 -c conda-forge +conda create --name lisflood python=3.10 -c conda-forge conda activate lisflood conda install -c conda-forge pcraster gdal ``` @@ -51,7 +51,7 @@ git clone --single-branch --branch master https://github.com/ec-jrc/lisflood-cod * **Install requirements into a python 3 conda env** ```bash -conda create --name lisflood python=3.12 -c conda-forge +conda create --name lisflood python=3.10 -c conda-forge conda activate lisflood conda install -c conda-forge pcraster gdal cd lisflood-code