Skip to content

Commit

Permalink
Process comments from @dbrakenhoff
Browse files Browse the repository at this point in the history
  • Loading branch information
rubencalje committed Jun 7, 2023
1 parent d8a8502 commit 3610637
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ Please see the [dependencies](https://github.com/ArtesiaWater/hydropandas#depend
If you are using nlmod for the first time you need to download the MODFLOW executables. You can easily download these executables by running this Python code:

import nlmod
nlmod.util.download_mfbinaries()
nlmod.download_mfbinaries()

After you've downloaded the executables you can run the Jupyter Notebooks in the examples folder. These notebooks illustrate how you to use the nlmod package.
2 changes: 1 addition & 1 deletion docs/examples/00_model_from_scratch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"outputs": [],
"source": [
"if not nlmod.util.check_presence_mfbinaries():\n",
" nlmod.util.download_mfbinaries()"
" nlmod.download_mfbinaries()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ MODFLOW 6 model given a model dataset::
Running the model requires the modflow binaries provided by the USGS. Those can
be downloaded with::

nlmod.util.download_mfbinaries()
nlmod.download_mfbinaries()

Writing and running the model can then be done using::

Expand Down
2 changes: 1 addition & 1 deletion nlmod/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from importlib import metadata
from platform import python_version

__version__ = "0.5.4"
__version__ = "0.6.0"


def show_versions() -> None:
Expand Down

0 comments on commit 3610637

Please sign in to comment.