Skip to content

Commit 523b38f

Browse files
committed
CI Don't repair macOS wheels
1 parent 43db3d4 commit 523b38f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
36+
os: [ubuntu-latest, windows-latest, macos-12, macos-14]
3737

3838
runs-on: ${{ matrix.os }}
3939
needs: test
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/upload-artifact@v4
5252
with:
5353
name: build-${{ matrix.os }}-${{ strategy.job-index }}
54-
path: dist/*.whl
54+
path: ./wheelhouse/*.whl
5555

5656
publish:
5757
runs-on: ubuntu-latest

pixi.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastcan"
3-
version = "0.1.21"
3+
version = "0.1.22"
44
description = "A fast canonical-correlation-based feature selection method"
55
authors = [
66
{ name = "Matthew Sikai Zhang", email = "[email protected]" },
@@ -98,6 +98,9 @@ skip = [
9898
"*-manylinux_i686", "*-musllinux_*",
9999
"*-manylinux_ppc64le", "*-manylinux_s390x"
100100
]
101+
# Don't repair macOS wheels
102+
[tool.cibuildwheel.macos]
103+
repair-wheel-command = ""
101104

102105
[tool.black]
103106
line-length = 88

0 commit comments

Comments
 (0)