We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee87c9f commit eaa9749Copy full SHA for eaa9749
1 file changed
.github/workflows/reusable_build_wheels.yaml
@@ -55,10 +55,10 @@ jobs:
55
matrix:
56
conf: [
57
{os: ubuntu-24.04, arch: x86_64},
58
- {os: macos-13, arch: x86_64},
59
- {os: macos-14, arch: arm64},
60
- {os: macos-15, arch: arm64},
61
- {os: windows-2025, arch: AMD64},
+ # {os: macos-13, arch: x86_64},
+ # {os: macos-14, arch: arm64},
+ # {os: macos-15, arch: arm64},
+ # {os: windows-2025, arch: AMD64},
62
]
63
steps:
64
- name: Check out a copy of the git repository
@@ -112,9 +112,9 @@ jobs:
112
# Color codes make the raw logs hard to read. (CMake uses CLICOLOR.)
113
CLICOLOR: ${{inputs.debug && 0 || ''}}
114
CMAKE_BUILD_PARALLEL_LEVEL: ${{env.num_threads}}
115
- CIBW_BEFORE_BUILD_LINUX: cat /constraints.txt
116
run: |
117
- cibuildwheel --output-dir wheelhouse
+ echo 'pillow<11.3' >> pip-constraints.txt
+ PIP_CONSTRAINT=pip-constraints.txt cibuildwheel --output-dir wheelhouse
118
119
- if: inputs.upload != false
120
name: Upload wheels to GitHub
0 commit comments