Skip to content

Commit 8ac85ed

Browse files
committed
Version 0.5.3
1 parent cec16fb commit 8ac85ed

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

gistim/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def compute(args) -> None:
150150
parser_compute.set_defaults(func=compute)
151151
parser_compute.add_argument("path", type=str, nargs=1, help="path to JSON file")
152152
parser_compute.add_argument("--transient", action=argparse.BooleanOptionalAction)
153-
parser.set_defaults(transient=False)
153+
parser_compute.set_defaults(transient=False)
154154

155155
# Parse and call the appropriate function
156156
args = parser.parse_args()

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ build-backend = "setuptools.build_meta"
66
name = "gistim"
77
description = "Connects TimML and TTim Analytic Element modeling to QGIS"
88
readme = "README.md"
9-
version = "0.5.1"
9+
version = "0.5.3"
1010
maintainers = [{ name = "Huite Bootsma", email = "huite.bootsma@deltares.nl" }]
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.9"
1212
dependencies = [
1313
'pandas',
1414
'timml>=6.3.0',
@@ -21,11 +21,9 @@ classifiers = [
2121
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
2222
'Programming Language :: Python',
2323
'Operating System :: OS Independent',
24-
'Programming Language :: Python :: 3',
25-
'Programming Language :: Python :: 3.7',
26-
'Programming Language :: Python :: 3.8',
2724
'Programming Language :: Python :: 3.9',
2825
'Programming Language :: Python :: 3.10',
26+
'Programming Language :: Python :: 3.11',
2927
'Programming Language :: Python :: Implementation :: CPython',
3028
'Topic :: Scientific/Engineering',
3129
]

0 commit comments

Comments
 (0)