Skip to content

Commit

Permalink
Fix: Restrict python_version to ^3.8,<3.14 for PyInstaller compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Game4Move78 authored and Patrick Lenihan committed Feb 2, 2025
1 parent 43864b2 commit f96973b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ packages = [
aw-qt = "aw_qt:main"

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.8,<3.13" # PyInstaller needs <3.14
aw-core = "^0.5"

pyobjc-framework-Cocoa = { version = "*", platform = "darwin" }
Expand All @@ -39,7 +39,7 @@ pyinstaller = ">=6.6"
types-click = "*"

[tool.mypy]
python_version = 3.8
python = "^3.8"
ignore_missing_imports = true

[[tool.mypy.overrides]]
Expand Down

0 comments on commit f96973b

Please sign in to comment.