We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ede4d9 commit c1bc30fCopy full SHA for c1bc30f
.github/workflows/test.yml
@@ -21,7 +21,8 @@ jobs:
21
shell: bash
22
run: |
23
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
24
- export CXX=g++
+ export CXX=g++-13
25
+ g++-13 --version
26
fi
27
python -m pip install --upgrade pip
28
python -m pip install .[test]
pyproject.toml
@@ -47,7 +47,8 @@ skip = "*-musllinux*" # Skip musllinux (conflicts with libcudacxx)
47
48
[tool.bibuildwheel.macos]
49
before-build= [
50
- "export CXX=g++"
+ "export CXX=g++-13",
51
+ "g++-13 --version"
52
]
53
54
[tool.cibuildwheel.pyodide]
0 commit comments