Skip to content

Commit

Permalink
Fix Errors Due to Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
doadin committed Sep 12, 2023
1 parent a459e78 commit 0543598
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
cache: pip

- name: Prepare pip
run: python -m pip install wheel
run: python -m pip install --upgrade pip wheel setuptools

- name: Install GTK
run: |
Expand All @@ -64,9 +64,9 @@ jobs:
- name: Install Python dependencies
run: >
python -m pip install
twisted[tls]==22.4.0
twisted[tls]==22.8.0
libtorrent==${{ matrix.libtorrent }}
pyinstaller==4.10
pyinstaller
pygame
-r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ twisted[tls]>=17.1
rencode
pyopenssl
pyxdg
pillow
pillow==9.5.0
mako
setuptools
chardet==4.0.0
setproctitle
pywin32; sys_platform == 'win32'
certifi; sys_platform == 'win32'
windows-curses; sys_platform == 'win32'
zope.interface>=4.4.2
zope.interface
distro; 'linux' in sys_platform or 'bsd' in sys_platform
pygeoip
ifaddr==0.2.0

0 comments on commit 0543598

Please sign in to comment.