diff --git a/.zenodo.json b/.zenodo.json index a1df6848..4a14048c 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -24,6 +24,14 @@ { "affiliation": "Deltares", "name": "Hegnauer, Mark" + }, + { + "affiliation": "Deltares", + "name": "Buitink, Joost" + }, + { + "affiliation": "Deltares", + "name": "Dalmijn, Brendan" } ], "access_right": "open", diff --git a/docs/changelog.rst b/docs/changelog.rst index 8c13aa1c..550af0a9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,8 +6,16 @@ All notable changes to this project will be documented in this page. The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. +v0.4.1 (November 2023) +====================== +Small update + +Fixed +----- +- Make HydroMT-Wflow **v0.4.0** conda installable + v0.4.0 (November 2023) -========== +====================== Small overhaul of internal methods and stability fixes. This version works with HydroMT **v0.9.1** onwards. Changed diff --git a/docs/getting_started/installation.rst b/docs/getting_started/installation.rst index fcd15bd8..d9b5010a 100644 --- a/docs/getting_started/installation.rst +++ b/docs/getting_started/installation.rst @@ -49,6 +49,15 @@ You can install HydroMT-Wflow in a new environment called `hydromt-wflow`: $ mamba create -n hydromt-wflow -c conda-forge hydromt_wflow +.. Note:: + + Please take into account that gwwapi or hydroengine packages are not available from conda and therefore have to be installed from pypi separately. + +.. code-block:: console + + $ pip install gwwapi + $ pip install hydroengine + Then, activate the environment (as stated by mamba/conda) to start making use of HydroMT-Wflow: HydroMT-Wflow will be installed together with all optional (see above) and a few additional dependencies with: diff --git a/hydromt_wflow/__init__.py b/hydromt_wflow/__init__.py index 933e5bae..38446d52 100644 --- a/hydromt_wflow/__init__.py +++ b/hydromt_wflow/__init__.py @@ -2,7 +2,7 @@ from os.path import abspath, dirname, join -__version__ = "0.4.0" +__version__ = "0.4.1" try: import pcraster as pcr diff --git a/pyproject.toml b/pyproject.toml index 1afacf6c..98dc8a52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,8 @@ name = "hydromt_wflow" authors = [ { name = "Dirk Eilander", email = "dirk.eilander@deltares.nl" }, { name = "Hélène Boisgontier", email = "helene.boisgontier@deltares.nl" }, + { name = "Joost Buitink", email = "joost.buitink@deltares.nl" }, + { name = "Brendan Dalmijn", email = "brendan.dalmijn@deltares.nl" }, ] dependencies = [ "dask",