We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3991247 commit 91dae32Copy full SHA for 91dae32
.github/workflows/build.yml
@@ -35,8 +35,6 @@ jobs:
35
- uses: actions/checkout@v4
36
- run: make requirements
37
- if: runner.os == 'Linux'
38
- run: |
39
- sudo apt-get install g++-12
40
- name: Set up QEMU # Needed to build aarch64 wheels
41
if: runner.os == 'Linux'
42
uses: docker/setup-qemu-action@v3
pyproject.toml
@@ -70,6 +70,7 @@ manylinux-x86_64-image = "manylinux_2_28"
70
[tool.cibuildwheel.linux]
71
archs = ["x86_64", "aarch64"]
72
environment = "CXX='g++-12'"
73
+before-build = "apt-get -y install g++-12"
74
75
[tool.cibuildwheel.macos]
76
archs = ["x86_64", "universal2", "arm64"]
0 commit comments