Skip to content

Commit 391c66d

Browse files
authored
Merge pull request #125 from pyswmm/dev_build_macos
2 parents 0175443 + 82e23b3 commit 391c66d

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.github/workflows/build_wheel.yml

-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ jobs:
106106
with:
107107
package-dir: ./swmm-toolkit
108108
env:
109-
# mac needs ninja to build
110-
CIBW_BEFORE_BUILD_MACOS: brew install ninja
111109
# configure cibuildwheel to build native archs ('auto'), and some emulated ones
112110
CIBW_ARCHS_LINUX: aarch64
113111
CIBW_ARCHS_MACOS: arm64

swmm-toolkit/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cmake_minimum_required (VERSION 3.17)
1515

1616
project(swmm-toolkit
1717
VERSION
18-
0.15.1
18+
0.15.2
1919
)
2020

2121

swmm-toolkit/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ requires = [
55
"scikit-build>=0.13",
66
"cmake>=3.21",
77
"swig==4.0.2",
8+
"ninja==1.11.1 ; sys_platform == 'darwin'"
89
]
910
build-backend = "setuptools.build_meta"

swmm-toolkit/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def exclude_files(cmake_manifest):
112112

113113
setup(
114114
name = "swmm-toolkit",
115-
version = "0.15.1",
115+
version = "0.15.2",
116116

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
__credits__ = "Colleen Barr, Sam Hatchett"
2020
__license__ = "CC0 1.0 Universal"
2121

22-
__version__ = "0.15.1"
22+
__version__ = "0.15.2"
2323
__date__ = "June 7, 2021"
2424

2525
__maintainer__ = "Michael Tryby"

0 commit comments

Comments
 (0)