Skip to content

Commit

Permalink
Make pyinstaller a dev dep
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Feb 10, 2025
1 parent b26050c commit bb3be6d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows_release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- name: Set up Python using GH python version
run: uv venv --python 3.12 --python-preference only-system

- name: Install the project
run: uv sync
- name: Install the project, without pyinstaller dev dependency as we'll install it manually
run: uv sync --no-group dev

- name: Build Desktop App including pyinstaller bootloader
run: uv run bash ./app/desktop/build_desktop_app.sh --build-bootloader
Expand Down
6 changes: 5 additions & 1 deletion app/desktop/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ requires-python = ">=3.10"
dependencies = [
"kiln-server",
"pillow>=11.0.0",
"pyinstaller==6.11.1",
"pystray>=0.19.5",
]

[dependency-groups]
dev = [
"pyinstaller==6.11.1",
]

[tool.uv.sources]
kiln-server = { workspace = true }
10 changes: 8 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb3be6d

Please sign in to comment.