From 8e5d5a2b5b2d20239279d6069f7636242a1de46b Mon Sep 17 00:00:00 2001 From: OnnoEbbens Date: Tue, 31 Oct 2023 10:37:40 +0100 Subject: [PATCH 1/3] Fix for #277 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d63b685c..48350d1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,7 @@ dependencies = [ "matplotlib", "dask", "colorama", + "joblib" ] keywords = ["hydrology", "groundwater", "modeling", "Modflow 6", "flopy"] classifiers = [ From 7806c47c50db0afc65af9660e3c477e9835999b5 Mon Sep 17 00:00:00 2001 From: OnnoEbbens Date: Tue, 31 Oct 2023 16:26:28 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 32c5f17c..cd1da46a 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Install the module with pip: * `matplotlib` * `dask` * `colorama` +* `joblib` There are some optional dependecies, only needed (and imported) in a single method. Examples of this are `bottleneck` (used in calculate_gxg), `geocube` (used in From f781120e9a1b1aa391a3d937e04e8e1138d02b7a Mon Sep 17 00:00:00 2001 From: OnnoEbbens Date: Tue, 31 Oct 2023 16:26:46 +0100 Subject: [PATCH 3/3] Update getting_started.rst --- docs/getting_started.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 95096449..2e20eff5 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -117,6 +117,7 @@ potential solutions. - matplotlib - dask - colorama +- joblib On top of that there are some optional dependecies: @@ -126,4 +127,4 @@ On top of that there are some optional dependecies: - scikit-image (used in calculate_sea_coverage) These dependencies are only needed (and imported) in a single method or function. -They can be installed using ``pip install nlmod[full]`` or ``pip install -e .[full]``. \ No newline at end of file +They can be installed using ``pip install nlmod[full]`` or ``pip install -e .[full]``.