Skip to content

Commit

Permalink
Add pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
sashgorokhov committed Sep 19, 2023
1 parent 4e12a75 commit 3026fcd
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ jobs:
- name: Test
run: |
poetry run pytest -svvv tests/
- name: Build .exe
run: |
poetry run pyinstaller -y -F --clean --log-level INFO mavlog2csv.py
95 changes: 93 additions & 2 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ license = "MIT"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
python = ">=3.9,<3.13" # because of pyinstaller
pymavlink = "^2.4.40"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pre-commit = "^3.4.0"
pyinstaller = "^5.13.2"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 3026fcd

Please sign in to comment.