Skip to content

Commit 03a41f3

Browse files
committed
Staging Release Changes
1 parent 5578c8e commit 03a41f3

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

swmm-toolkit/AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
Michael Tryby <[email protected]> (public domain)
44

5+
Michael Tryby <[email protected]>
56
Jennifer Wu <[email protected]>
67
Caleb Buahin <[email protected]>
78
Laurent Courty <[email protected]>

swmm-toolkit/setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# setup.py - Setup script for swmm-toolkit python package
33
#
44
# Created: Jul 2, 2018
5-
# Updated: Jun 7, 2021
5+
# Updated: Sep 4, 2025
66
#
77
# Author: See AUTHORS
88
#
@@ -112,13 +112,13 @@ def exclude_files(cmake_manifest):
112112

113113
setup(
114114
name = "swmm-toolkit",
115-
version = "0.15.5",
115+
version = "0.16.0",
116116

117117
packages = ["swmm_toolkit", "swmm.toolkit"],
118118
package_dir = package_dir,
119119

120120
zip_safe = False,
121-
install_requires = ["aenum==3.1.11"],
121+
install_requires = ["aenum>=3.1.11"],
122122

123123
cmdclass = {"clean": CleanCommand},
124124
cmake_args = cmake_args,
@@ -130,7 +130,7 @@ def exclude_files(cmake_manifest):
130130
url='https://github.com/pyswmm/swmm-python',
131131

132132
author='See AUTHORS',
133-
maintainer_email='bemcdonnell@gmail.com',
133+
maintainer_email='michael.tryby@gmail.com',
134134
license='CC0',
135135
license_files=license_files,
136136
keywords="swmm5, swmm, stormwater, hydraulics, hydrology",
@@ -140,12 +140,11 @@ def exclude_files(cmake_manifest):
140140
"Operating System :: POSIX :: Linux",
141141
"Operating System :: MacOS",
142142
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
143-
"Programming Language :: Python :: 3.7",
144-
"Programming Language :: Python :: 3.8",
145143
"Programming Language :: Python :: 3.9",
146144
"Programming Language :: Python :: 3.10",
147145
"Programming Language :: Python :: 3.11",
148146
"Programming Language :: Python :: 3.12",
147+
"Programming Language :: Python :: 3.13",
149148
"Programming Language :: C",
150149
"Development Status :: 5 - Production/Stable",
151150
]

swmm-toolkit/src/swmm/toolkit/__init__.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# __init__.py - SWMM toolkit package
55
#
66
# Created: Aug 9, 2018
7-
# Updated: July 2, 2022
7+
# Updated: September 4, 2025
88
#
99
# Author: See AUTHORS
1010
#
@@ -15,16 +15,15 @@
1515

1616

1717
__author__ = "See AUTHORS"
18-
__copyright__ = "None"
19-
__credits__ = "Colleen Barr, Sam Hatchett"
18+
__credits__ = "Colleen Barr"
2019
__license__ = "CC0 1.0 Universal"
2120

22-
__version__ = "0.15.5"
23-
__date__ = "June 7, 2021"
21+
__version__ = "0.16.0"
22+
__date__ = "September 4, 2025"
2423

2524
__maintainer__ = "Michael Tryby"
26-
__email__ = "tryby.michael@epa.gov"
27-
__status__ = "Beta"
25+
__email__ = "michael[email protected]"
26+
__status__ = "Production/Stable"
2827

2928

3029
import os

0 commit comments

Comments
 (0)