Skip to content

Commit

Permalink
[CI/CD] Fix Pillow packaging build errors
Browse files Browse the repository at this point in the history
Pillow have dropped 32-bit wheels from v10 onwards so force install of
older v9 wheels since we don't want to build from src.

Refs: python-pillow/Pillow#6941 (comment)
  • Loading branch information
cas-- committed Sep 18, 2023
1 parent 18dca70 commit 6c9b058
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ jobs:
python -m pip install --no-index --find-links="C:\GTK\release\python" pycairo PyGObject
- name: Install Python dependencies
# Pillow no longer provides 32-bit wheels for Windows
# so specify only-binary to install old version.
run: >
python -m pip install
--only-binary=pillow
twisted[tls]==22.4.0
libtorrent==${{ matrix.libtorrent }}
pyinstaller==4.10
Expand Down

0 comments on commit 6c9b058

Please sign in to comment.