Skip to content

Commit

Permalink
test: use v14 of executables distribution (#1614)
Browse files Browse the repository at this point in the history
* v15 of exes distribution doesn't have double-precision program versions
* temporary workaround until double-prec mf2005/mfnwt/etc restored to dist
  • Loading branch information
wpbonelli authored and langevin-usgs committed Feb 13, 2024
1 parent 764866f commit e366b33
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion autotest/get_exes.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ def rebuild():
def test_get_executables(downloaded_bin_path: Path):
print(f"Installing MODFLOW-related executables to: {downloaded_bin_path}")
downloaded_bin_path.mkdir(exist_ok=True, parents=True)
flopy.utils.get_modflow(str(downloaded_bin_path))
# todo: remove release_id workaround when double-precision comparison issues fixed
# https://github.com/MODFLOW-USGS/modflow6/pull/1612
flopy.utils.get_modflow(str(downloaded_bin_path), release_id="14.0")


if __name__ == "__main__":
Expand Down

0 comments on commit e366b33

Please sign in to comment.