Skip to content

Commit e957d30

Browse files
authored
fix(ci) Skip running cibuildwheel for Python 3.10 on macos (#2976)
* fix(ci) Skip running cibuildwheel for Python 3.10 on macos The 3.10 package that cibuildwheel is trying to download no longer exists on python.org. Skip this version of Python on macos until this PR is resolved: pypa/cibuildwheel#902 * skip all macos archs
1 parent c4ec456 commit e957d30

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build_deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ jobs:
103103
# emulated ones
104104
CIBW_ARCHS: ${{ matrix.archs }}
105105
CIBW_BUILD: cp3*
106+
# Skip 3.10 on macos until this is resolved
107+
# https://github.com/pypa/cibuildwheel/issues/902
108+
CIBW_SKIP: cp310-macosx_*
106109
# Run a smoke test on every supported platform
107110
CIBW_TEST_COMMAND: python {project}/tests/smoke_test.py
108111
# Testing arm on MacOS is currently not supported by Github

0 commit comments

Comments
 (0)