summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2023-09-18 14:25:03 +0200
committerCalum Lind <calumlind+deluge@gmail.com>2023-09-18 15:55:53 +0200
commit6c9b058d81639deaef998f61937e24a4a71d4700 (patch)
treef29d494676d57084628321f83615a0a06d137b64 /.github
parent[GTKUI] Fix cairo crashes by not storing current context (diff)
downloaddeluge-6c9b058d81639deaef998f61937e24a4a71d4700.tar.xz
deluge-6c9b058d81639deaef998f61937e24a4a71d4700.zip
[CI/CD] Fix Pillow packaging build errors
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: https://github.com/python-pillow/Pillow/issues/6941#issuecomment-1604058002
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cd.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index ce0d032c1..80335bb42 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -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