Skip to content

Commit cbf133a

Browse files
committed
fix rebase regressions
1 parent 4b50572 commit cbf133a

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.github/workflows/build_wheel.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ jobs:
2121
working-directory: ./nrtest-swmm
2222
steps:
2323
- name: Checkout repo
24-
uses: actions/checkout@v3
25-
with:
26-
submodules: true
24+
uses: actions/checkout@v5
2725
- name: Install Python
2826
uses: actions/setup-python@v5
2927
with:

swmm-toolkit/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "swmm-toolkit"
7-
version = "0.15.5"
7+
version = "0.16.0"
88
description = "PySWMM SWMM Python Toolkit"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
license = "CC0-1.0 AND (MIT OR Apache-2.0)"
@@ -26,7 +26,7 @@ classifiers = [
2626
"Development Status :: 5 - Production/Stable",
2727
]
2828
requires-python = ">=3.9"
29-
dependencies = ["aenum==3.1.11"]
29+
dependencies = ["aenum>=3.1.11"]
3030
urls = { Homepage = "https://github.com/pyswmm/swmm-python" }
3131

3232
[[tool.scikit-build.overrides]]

swmm-toolkit/src/swmm/toolkit/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,11 @@ if(WIN32)
1919
set(SOABI "")
2020
set(LIB_EXT "pyd")
2121
else()
22-
message(STATUS "Python3_SOABI in block")
2322
set(SOABI ".abi3")
2423
set(LIB_EXT "so")
2524
endif()
2625

27-
# turn if stable ABI if NO_STABLE_ABI is 1 or true
26+
# turn off stable ABI if NO_STABLE_ABI is 1 or true
2827
set(PY_LIMITED_API_DEF "Py_LIMITED_API=0x03090000")
2928
string(TOLOWER "$ENV{NO_STABLE_ABI}" _abi_val)
3029
if(_abi_val STREQUAL "1" OR _abi_val STREQUAL "true")

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
__date__ = "September 4, 2025"
2323

2424
__maintainer__ = "Michael Tryby"
25-
__email__ = "tryby.michael@epa.gov"
25+
__email__ = "michael[email protected]"
2626
__status__ = "Production/Stable"

0 commit comments

Comments
 (0)