Skip to content

Commit a593a14

Browse files
committed
Revert "feat(version): add project version management tool (MODFLOW-ORG#284)"
This reverts commit f9e26de.
1 parent f9e26de commit a593a14

5 files changed

Lines changed: 1 addition & 636 deletions

File tree

autotest/test_version.py

Lines changed: 0 additions & 271 deletions
This file was deleted.

modflow_devtools/cli.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
mf programs install <program>
1212
mf programs uninstall <program>
1313
mf programs history
14-
mf version get
15-
mf version set <version>
1614
"""
1715

1816
import argparse
@@ -33,9 +31,6 @@ def main():
3331
# Programs subcommand
3432
subparsers.add_parser("programs", help="Manage MODFLOW program registries")
3533

36-
# Version subcommand
37-
subparsers.add_parser("version", help="Manage project versions")
38-
3934
# Parse only the first level to determine which submodule to invoke
4035
args, remaining = parser.parse_known_args()
4136

@@ -55,11 +50,6 @@ def main():
5550

5651
sys.argv = ["mf programs", *remaining]
5752
programs_main()
58-
elif args.subcommand == "version":
59-
from modflow_devtools.version.__main__ import main as version_main
60-
61-
sys.argv = ["mf version", *remaining]
62-
version_main()
6353

6454

6555
if __name__ == "__main__":

0 commit comments

Comments
 (0)