From 57476b32af1bbe4ccd657cf48422e965cdbff963 Mon Sep 17 00:00:00 2001 From: Sierd de Vries Date: Fri, 17 Apr 2026 10:12:04 +0200 Subject: [PATCH 1/2] Bump version to 3.1.0 with added gui and updated dependencies note that setuptools is deprecated. We use an older version to access the "pkg_resources" functionality that is used in the BMI package. --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7dcdaf65..a7697932 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ exclude = [ [project] name = "aeolis" -version = "3.0.1" +version = "3.1.0" authors = [ { name="Sierd de Vries", email="sierd.devries@tudelft.nl" }, ] @@ -28,6 +28,7 @@ keywords = ["aeolian sediment", "transport", "model", "deltares", "tudelft"] dependencies = [ "docopt", "typer", + "setuptools<80" "bmi-python", "netCDF4", "scipy", @@ -35,6 +36,7 @@ dependencies = [ "matplotlib", "numba", "windrose", + "ffmpeg" ] classifiers = [ "Development Status :: 5 - Production/Stable", From 4fdba90ec78dc7e33ee52094b4290c03ac5dc124 Mon Sep 17 00:00:00 2001 From: Sierd de Vries Date: Fri, 17 Apr 2026 09:42:00 +0000 Subject: [PATCH 2/2] fixed syntax issues --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a7697932..f369bce7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ keywords = ["aeolian sediment", "transport", "model", "deltares", "tudelft"] dependencies = [ "docopt", "typer", - "setuptools<80" + "setuptools<80", "bmi-python", "netCDF4", "scipy", @@ -36,7 +36,7 @@ dependencies = [ "matplotlib", "numba", "windrose", - "ffmpeg" + "ffmpeg", ] classifiers = [ "Development Status :: 5 - Production/Stable",