Skip to content

Commit b3a6ca6

Browse files
committed
fix wheel name
1 parent fb3cc3d commit b3a6ca6

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
--generate-notes # Automatically generate release notes based on commits
3131
echo "Release $TAG created successfully."
3232
build_windows:
33-
if: true
33+
if: false
3434
name: Build on Windows
3535
runs-on: windows-2025
3636
needs: create_release_tag
@@ -66,7 +66,8 @@ jobs:
6666
needs: create_release_tag
6767
strategy:
6868
matrix:
69-
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14]
69+
#os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14]
70+
os: [macos-14]
7071
runs-on: ${{matrix.os}}
7172
steps:
7273
- name: Checkout repository

scripts/build_macos.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ export ARCH_ARG="-DCMAKE_OSX_ARCHITECTURES=arm64"
3030
(rsync -avP --exclude __pycache__ lib/symdiff dist/)
3131
(rsync -avP --exclude __pycache__ LICENSE NOTICE README.md examples doc dist)
3232

33-
FULL_PLAT_NAME=arm64
34-
echo PACKAGING $FULL_PLAT_NAME
35-
if [[ -n "$FULL_PLAT_NAME" ]]; then
36-
(cd dist && perl -p -i -e "s/^#plat-name.*/plat-name = ${FULL_PLAT_NAME}/" setup.cfg);
37-
fi
33+
#FULL_PLAT_NAME=arm64
34+
#echo PACKAGING $FULL_PLAT_NAME
35+
#if [[ -n "$FULL_PLAT_NAME" ]]; then
36+
#(cd dist && perl -p -i -e "s/^#plat-name.*/plat-name = ${FULL_PLAT_NAME}/" setup.cfg);
37+
#fi
3838
(cd dist && ${PIP_BIN} wheel .)
3939
(mv dist/*.whl .)
4040

0 commit comments

Comments
 (0)