Skip to content

Commit c1bc30f

Browse files
committed
Maybe g++-13 is the correct way?
1 parent 3ede4d9 commit c1bc30f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
shell: bash
2222
run: |
2323
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
24-
export CXX=g++
24+
export CXX=g++-13
25+
g++-13 --version
2526
fi
2627
python -m pip install --upgrade pip
2728
python -m pip install .[test]

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ skip = "*-musllinux*" # Skip musllinux (conflicts with libcudacxx)
4747

4848
[tool.bibuildwheel.macos]
4949
before-build= [
50-
"export CXX=g++"
50+
"export CXX=g++-13",
51+
"g++-13 --version"
5152
]
5253

5354
[tool.cibuildwheel.pyodide]

0 commit comments

Comments
 (0)