Skip to content

Work around cibuildwheel failures for Linux that are a byproduct of Pillow version 11.3.0 released on 2025-07-01 #830

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[tool.cibuildwheel]
test-extras = "dev"
dependency-versions = "latest"
# Due to package & module name conflict, temporarily move it away to run tests:
# Due to package & module name conflict, temporarily move qsimcirq away.
before-test = "mv {package}/qsimcirq /tmp"
test-command = "pytest -s -v {package}/qsimcirq_tests/qsimcirq_test.py && mv /tmp/qsimcirq {package}"

Expand All @@ -27,3 +27,6 @@ repair-wheel-command = "delocate-listdeps {wheel} && delocate-wheel --verbose --
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"
skip = "*musllinux*"
# Pillow version 11.3.0 causes failures during wheel testing on Linux.
# TODO: remove after the Pillow install no longer fails.
before-test = "pip install 'pillow<11.3' && mv {package}/qsimcirq /tmp"
Loading