Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/_job_cx-freeze-dmg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ jobs:
check-latest: true
architecture: ${{ matrix.pyarch }}
- name: Install build dependencies
env:
NONINTERACTIVE: 1
run: |
sudo /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
sudo rm -rfv /opt/homebrew/
pip3 install --upgrade cx_freeze ruff
- name: Install target dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_job_nuitka-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
architecture: x64
- name: Install build dependencies
run: |
pip3 install nuitka ruff
pip3 install --upgrade nuitka ruff
- name: Install target dependencies
run: |
pip3 install -r misc/requirements.in
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/_job_nuitka-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,12 @@ jobs:
check-latest: true
architecture: ${{ matrix.pyarch }}
- name: Install build dependencies
env:
NONINTERACTIVE: 1
run: |
pip3 install nuitka ruff
sudo /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
sudo rm -rfv /opt/homebrew/
pip3 install --upgrade nuitka ruff
- name: Install target dependencies
run: |
pip3 install -r misc/requirements.in
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_job_nuitka-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
architecture: x64
- name: Install build dependencies
run: |
pip3 install nuitka ruff
pip3 install --upgrade nuitka ruff
- name: Install target dependencies
run: |
pip3 install -r misc/requirements.in
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_job_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install build dependencies
run: |
pip3 install --upgrade pip
pip3 install twine setuptools setuptools-scm ruff PySide6-Essentials
pip3 install --upgrade twine setuptools setuptools-scm ruff PySide6-Essentials
- name: Prepare
shell: bash
env:
Expand Down
2 changes: 1 addition & 1 deletion misc/requirements-flatpak.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ installer
setuptools-scm
requests < 3.0
QtAwesome
legendary-gl @ git+https://github.com/RareDevs/legendary@4074375b789a4c2c87f72307bc9581900e34fa50
legendary-gl @ git+https://github.com/RareDevs/legendary@rare-1.12.0
orjson
vdf @ git+https://github.com/solsticegamestudios/vdf@be1f7220238022f8b29fe747f0b643f280bfdb6e
pypresence
2 changes: 1 addition & 1 deletion misc/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ setuptools-scm
requests < 3.0
PySide6-Essentials >= 6.8.1, < 6.9.2
QtAwesome
legendary-gl @ https://github.com/RareDevs/legendary/archive/4074375b789a4c2c87f72307bc9581900e34fa50.zip
legendary-gl @ https://github.com/RareDevs/legendary/archive/refs/tags/rare-1.12.0.zip
orjson
vdf @ https://github.com/solsticegamestudios/vdf/archive/be1f7220238022f8b29fe747f0b643f280bfdb6e.zip
pywin32 ; platform_system == "Windows"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies = [
"requests < 3.0",
"PySide6-Essentials >= 6.8.1, < 6.9.2",
"QtAwesome",
"legendary-gl @ https://github.com/RareDevs/legendary/archive/4074375b789a4c2c87f72307bc9581900e34fa50.zip",
"legendary-gl @ https://github.com/RareDevs/legendary/archive/refs/tags/rare-1.12.0.zip",
"orjson",
"vdf @ https://github.com/solsticegamestudios/vdf/archive/be1f7220238022f8b29fe747f0b643f280bfdb6e.zip",
"pywin32 ; platform_system == 'Windows'",
Expand Down