Skip to content

Commit 0847062

Browse files
authored
support python3.14 for macOS (#279)
* support python3.14 for macOS
1 parent 4c2b583 commit 0847062

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/build_mac.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ function build() {
1414
PY_DOT=3.12.4
1515
elif [ "$PY_VERSION" -eq 313 ]; then
1616
PY_DOT=3.13.2
17+
elif [ "$PY_VERSION" -eq 314 ]; then
18+
PY_DOT=3.14.2
1719
else
1820
echo "Error, python version not found!"
1921
fi
@@ -31,8 +33,8 @@ function build() {
3133
pyenv exec python setup.py bdist_wheel --build-dir=build --plat-name macosx_12_0_universal2
3234
}
3335

34-
build 39
3536
build 310
3637
build 311
3738
build 312
3839
build 313
40+
build 314

0 commit comments

Comments
 (0)