Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Python package for building MODFLOW-based programs from source files.

### Version 2.0.0.dev0
### Version 2.1.0.dev0

[![PyPI Version](https://img.shields.io/pypi/v/mfpymake.png)](https://pypi.python.org/pypi/mfpymake)
[![Anaconda Version](https://anaconda.org/conda-forge/mfpymake/badges/version.svg)](https://anaconda.org/conda-forge/mfpymake)
Expand Down Expand Up @@ -167,8 +167,8 @@ When using the pymake object (`Pymake()`) only the positional arguments
import pymake

pm = pymake.Pymake()
pm.srcdir = '../src'
pm.target = 'mf6'
pm.srcdir = "../src"
pm.target = "mf6"
pm.include_subdirs = True
pm.build()
```
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ When using the pymake object (`Pymake()`) only the positional arguments
import pymake

pm = pymake.Pymake()
pm.srcdir = '../src'
pm.target = 'mf6'
pm.srcdir = "../src"
pm.target = "mf6"
pm.include_subdirs = True
pm.build()
```
Expand Down
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pymake"
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "linux-aarch64", "osx-arm64"]
version = "2.0.0.dev0"
version = "2.1.0.dev0"

[dependencies]
appdirs = "*"
Expand Down
4 changes: 2 additions & 2 deletions pymake/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "Joseph D. Hughes"
__date__ = "August 14, 2026"
__version__ = "2.0.0.dev0"
__date__ = "September 09, 2026"
__version__ = "2.1.0.dev0"
__maintainer__ = "Joseph D. Hughes"
__email__ = "jdhughes@usgs.gov"
__status__ = "Production"
Expand Down
2 changes: 1 addition & 1 deletion pymake/plot/dependency_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _check_pydot():
if pydot is None:
raise ImportError(
"pydot is required to plot dependency graphs, install it with "
"'pip install mfpymake[plot]'"
"'pip install mfpymake[plot]' or 'conda install pydot graphviz'"
)


Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0.dev0
2.1.0.dev0
Loading