Skip to content

Commit

Permalink
Merge pull request #174 from Nitrokey/upgrade-pyinstaller
Browse files Browse the repository at this point in the history
Upgrade pyinstaller
  • Loading branch information
mmerklinger authored Dec 20, 2023
2 parents 355fa12 + e347ae1 commit 826c052
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 23 deletions.
1 change: 1 addition & 0 deletions ci-scripts/linux/pyinstaller/nitrokey-app-onedir.spec
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ exe = EXE(
target_arch=None,
codesign_identity=None,
entitlements_file=None,
contents_directory='.',
)
coll = COLLECT(
exe,
Expand Down
1 change: 1 addition & 0 deletions ci-scripts/windows/pyinstaller/nitrokey-app-onedir.spec
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ exe = EXE(
icon=['nitrokey-app.ico'],
version='file_version_info.txt',
uac_admin=True,
contents_directory='.',
)
coll = COLLECT(
exe,
Expand Down
44 changes: 23 additions & 21 deletions poetry.lock

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

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{include = "nitrokeyapp"}
Expand All @@ -30,7 +31,7 @@ packages = [
nitrokeyapp = "nitrokeyapp.__main__:main"

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.9,<3.13"
pySide6 = ">=6.6.0"
pyudev = "^0.24.1"
pynitrokey = "0.4.43"
Expand All @@ -45,7 +46,7 @@ isort = "^5.12.0"
mypy = ">=1.4,<1.5"

[tool.poetry.group.deploy.dependencies]
pyinstaller = "5.9.0"
pyinstaller = "^6.3.0"
pyinstaller-versionfile = { version = "2.1.1", markers = "sys_platform=='win32'" }

[tool.isort]
Expand Down

0 comments on commit 826c052

Please sign in to comment.