diff options
| author | 2025-02-17 07:42:27 +0100 | |
|---|---|---|
| committer | 2025-02-17 07:42:27 +0100 | |
| commit | fc230ac9fb3be9e9f1df09dc9f63ba40d818527c (patch) | |
| tree | b52e265cf78623ffb503a90518183a4963868070 /.github/workflows | |
| parent | 3cf9c2db825b91da33a39449365f8fd8d6a8f7fe (diff) | |
Merging upstream version 2.1.2~dev0+20230918.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/cd.yml | 9 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
2 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2abfac0..8a99733 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -49,7 +49,7 @@ jobs: cache: pip - name: Prepare pip - run: python -m pip install wheel + run: python -m pip install wheel setuptools==68.* - name: Install GTK run: | @@ -62,11 +62,14 @@ 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 - twisted[tls]==22.4.0 + --only-binary=pillow + twisted[tls]==22.8.0 libtorrent==${{ matrix.libtorrent }} - pyinstaller==4.10 + pyinstaller pygame -r requirements.txt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ad554e..6fc6b5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - name: Install dependencies run: | - pip install --upgrade pip wheel + pip install --upgrade pip wheel setuptools pip install -r requirements.txt -r requirements-tests.txt pip install -e . @@ -91,7 +91,7 @@ jobs: - name: Install dependencies run: | - pip install --upgrade pip wheel + pip install --upgrade pip wheel setuptools pip install -r requirements.txt -r requirements-tests.txt pip install -e . |
