Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[project]
[workspace]
name = "pymake"
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "linux-aarch64", "osx-arm64", "osx-64"]
version = "2.0.0.dev0"

[dependencies]
appdirs = "*"
codespell = "*"
coverage = "*"
codespell = ">=2.2.2"
coverage = "!=7.6.5"
filelock = "*"
flaky = "*"
flopy = "*"
graphviz = "*"
hatchling = ">=1.27.0,<2"
matplotlib = "*"
matplotlib = ">=1.4.0"
meson = ">=1.3.1"
modflow-devtools = "*"
modflow-devtools = ">=1.7.0,!=1.9.0,<2"
networkx = "*"
ninja = "*"
numpy = "*"
numpy = ">=1.20.3,<3"
pip = "*"
pydotplus = "*"
pytest = "!=8.1.0"
Expand Down
1 change: 1 addition & 0 deletions pymake/utils/_usgs_src_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,7 @@ def _update_mf6_external_dependencies(
"Distributed/MpiRunControl.F90",
"Distributed/MpiWorld.f90",
"Solution/ParallelSolution.f90",
"Timing/ParallelAts.f90",
"Distributed/MpiUnitCache.f90",
"Distributed/MpiMessageCache.f90",
"Utilities/Export/DisNCMesh.f90",
Expand Down
24 changes: 12 additions & 12 deletions pymake/utils/usgsprograms.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,30 @@
# shared_object a shared library is built rather than an executable

[program."mf6"]
version = "6.7.0"
version = "6.8.0"
current = true
url = "https://github.com/MODFLOW-ORG/modflow6/releases/download/6.7.0/mf6.7.0_linux.zip"
dirname = "mf6.7.0_linux"
url = "https://github.com/MODFLOW-ORG/modflow6/releases/download/6.8.0/mf6.8.0_linux.zip"
dirname = "mf6.8.0_linux"
srcdir = "src"
standard_precision = true
double_precision = false
shared_object = false

[program."zbud6"]
version = "6.7.0"
version = "6.8.0"
current = true
url = "https://github.com/MODFLOW-ORG/modflow6/releases/download/6.7.0/mf6.7.0_linux.zip"
dirname = "mf6.7.0_linux"
url = "https://github.com/MODFLOW-ORG/modflow6/releases/download/6.8.0/mf6.8.0_linux.zip"
dirname = "mf6.8.0_linux"
srcdir = "utils/zonebudget/src"
standard_precision = true
double_precision = false
shared_object = false

[program."libmf6"]
version = "6.7.0"
version = "6.8.0"
current = true
url = "https://github.com/MODFLOW-ORG/modflow6/releases/download/6.7.0/mf6.7.0_linux.zip"
dirname = "mf6.7.0_linux"
url = "https://github.com/MODFLOW-ORG/modflow6/releases/download/6.8.0/mf6.8.0_linux.zip"
dirname = "mf6.8.0_linux"
srcdir = "srcbmi"
standard_precision = true
double_precision = false
Expand Down Expand Up @@ -230,7 +230,7 @@ double_precision = false
shared_object = false

[program."mf6dev"]
version = "6.7.0.dev3"
version = "6.9.0.dev0"
current = false
url = "https://github.com/MODFLOW-ORG/modflow6/archive/refs/heads/develop.zip"
dirname = "modflow6-develop"
Expand All @@ -240,7 +240,7 @@ double_precision = false
shared_object = false

[program."zbud6dev"]
version = "6.7.0.dev3"
version = "6.9.0.dev0"
current = false
url = "https://github.com/MODFLOW-ORG/modflow6/archive/refs/heads/develop.zip"
dirname = "modflow6-develop"
Expand All @@ -250,7 +250,7 @@ double_precision = false
shared_object = false

[program."libmf6dev"]
version = "6.7.0.dev3"
version = "6.9.0.dev0"
current = false
url = "https://github.com/MODFLOW-ORG/modflow6/archive/refs/heads/develop.zip"
dirname = "modflow6-develop"
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.11"
dependencies = [
"numpy",
"numpy>=1.20.3,<3.0",
"requests",
"networkx",
"meson>=1.3.1",
Expand All @@ -42,7 +43,7 @@ lint = [
]
test = [
"mfpymake[lint]",
"coverage",
"coverage!=7.6.5",
"flaky",
"filelock",
"pytest!=8.1.0",
Expand All @@ -52,8 +53,8 @@ test = [
"pytest-dotenv",
"pytest-xdist",
"appdirs",
"matplotlib",
"modflow-devtools",
"matplotlib>=1.4.0",
"modflow-devtools>=1.7.0,!=1.9.0,<2",
"flopy",
]

Expand All @@ -64,7 +65,7 @@ make-code-json = "pymake.cmds.createjson:main"

[project.urls]
Documentation = "https://mfpymake.readthedocs.io"
"Release Notes" = "https://github.com/modflowpy/flopy/blob/develop/docs/version_changes.md"
"Release Notes" = "https://github.com/modflowpy/pymake/releases"
"Bug Tracker" = "https://github.com/modflowpy/pymake/issues"
"Source Code" = "https://github.com/modflowpy/pymake"

Expand Down
Loading