Skip to content

Commit af65305

Browse files
authored
🐛 Fix broken manylinux wheels (#294)
## Description Due to the way Linux wheels are built by cibuildwheel (in a manylinux docker container), environment varaiables are not passed down to the container. As a result the `CI` environment variable is not defined in the docker container, which is used to flip on the `DEPLOY` CMake setting automatically. This has lead to manylinux wheels being built with `-march=native` that might produce errors like ```console Illegal instruction (core dumped) ``` when trying to import the respective packages. This PR fixes this by making sure that `DEPLOY="ON"` within cibuildwheel. Fixes #288 ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines. Signed-off-by: burgholzer <[email protected]>
1 parent c438d16 commit af65305

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ test-skip = "cp312-*" # Qiskit Terra does not support Python 3.12 yet
242242
build-frontend = "build"
243243

244244
[tool.cibuildwheel.linux]
245+
environment = { DEPLOY="ON" }
245246

246247
[tool.cibuildwheel.macos]
247248
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15" }

0 commit comments

Comments
 (0)