Skip to content

Commit f05a72c

Browse files
committed
* disable mac
1 parent 4074d62 commit f05a72c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
18+
os: [ubuntu-latest, windows-latest]
19+
# Temporarily disabled due to rate limits: macos-latest, macos-14
1920

2021
steps:
2122
- uses: actions/checkout@v4
@@ -30,7 +31,9 @@ jobs:
3031
- name: Cache cibuildwheel virtualenv
3132
uses: actions/cache@v4
3233
with:
33-
path: ~/Library/Caches/cibuildwheel
34+
path: |
35+
~/Library/Caches/cibuildwheel
36+
~/.cache/cibuildwheel
3437
key: ${{ runner.os }}-cibuildwheel-${{ hashFiles('**/pyproject.toml') }}
3538
restore-keys: |
3639
${{ runner.os }}-cibuildwheel-

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ test-command = "python -c 'import sharedmap; print(sharedmap.__version__)'"
5555

5656
[tool.cibuildwheel.environment]
5757
PIP_PREFER_BINARY = "1"
58-
VIRTUALENV_PIP = "embed"
58+
59+
[tool.cibuildwheel.macos.environment]
60+
SYSTEM_VERSION_COMPAT = "0"
5961

6062
[tool.cibuildwheel.linux]
6163
archs = ["x86_64"]

0 commit comments

Comments
 (0)