Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v0.4.1 #221

Merged
merged 4 commits into from Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .zenodo.json
Expand Up @@ -24,6 +24,14 @@
{
"affiliation": "Deltares",
"name": "Hegnauer, Mark"
},
{
"affiliation": "Deltares",
"name": "Buitink, Joost"
},
{
"affiliation": "Deltares",
"name": "Dalmijn, Brendan"
}
],
"access_right": "open",
Expand Down
10 changes: 9 additions & 1 deletion docs/changelog.rst
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions docs/getting_started/installation.rst
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion hydromt_wflow/__init__.py
Expand Up @@ -2,7 +2,7 @@

from os.path import abspath, dirname, join

__version__ = "0.4.0"
__version__ = "0.4.1"

try:
import pcraster as pcr
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Expand Up @@ -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",
Expand Down