diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2022-02-09 21:34:58 +0100 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2022-02-09 21:39:48 +0100 |
commit | b29829f57118706932b6422e86618743aa571c44 (patch) | |
tree | 8769ebf7c4c1027705abab87ebec124b5ca3d3ce /.github/workflows/cd.yml | |
parent | [Packaging] Fix pyinstaller to find installed deluge package data (diff) | |
download | deluge-b29829f57118706932b6422e86618743aa571c44.tar.xz deluge-b29829f57118706932b6422e86618743aa571c44.zip |
[CI] Fix package build error
Not all dependencies were installed due to adding a comment in the
middle of the pip install command
Also need to specify Twisted extras to match requirement.txt
Diffstat (limited to '.github/workflows/cd.yml')
-rw-r--r-- | .github/workflows/cd.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2dbd07b61..bc018a5a8 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -74,7 +74,7 @@ jobs: python -m pip install --find-links="C:\GTK\release\python" pycairo PyGObject python -m pip install - twisted==22.2.0rc1 # Windows simulate fix + twisted[tls]==22.2.0rc1 libtorrent==${{ matrix.libtorrent }} pyinstaller pygame |