Skip to content

Commit

Permalink
Add build dependencies when building deb files
Browse files Browse the repository at this point in the history
  • Loading branch information
almet committed Jan 6, 2025
1 parent 572d9e3 commit cf4173a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 133 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ jobs:
run: |
./dev_scripts/env.py --distro ${{ matrix.distro }} \
--version ${{ matrix.version }} \
run --dev --no-gui ./dangerzone/install/linux/build-deb.py
run --dev --no-gui uv run --group package ./dangerzone/install/linux/build-deb.py
- name: Upload Dangerzone .deb
if: matrix.distro == 'debian' && matrix.version == 'bookworm'
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lint = [
# Dependencies required for packaging the code on various platforms.
package = [
"setuptools",
"cx-freeze",
"pywin32",
"pyinstaller",
"cx-freeze; sys_platform == 'win32'",
"pywin32; sys_platform == 'win32'",
"pyinstaller; sys_platform == 'win32'",
"doit",
]

Expand Down
Loading

0 comments on commit cf4173a

Please sign in to comment.