Skip to content

Commit

Permalink
build: remove upper version requirement on Python (#106)
Browse files Browse the repository at this point in the history
aw-qt fails to build on Fedora 41, because it requires Python < 3.13 and Fedora uses Python 3.13.
It works fine with the latest version of Python though.

This patch is intended to help with Fedora packaging by assuming that aw-qt works on the latest Python instead
of requiring the packager to test it manually with every major release of Python.
  • Loading branch information
wojnilowicz authored Sep 2, 2024
1 parent d20a941 commit 43864b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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,<3.13"
python = "^3.8"
aw-core = "^0.5"

pyobjc-framework-Cocoa = { version = "*", platform = "darwin" }
Expand Down

0 comments on commit 43864b2

Please sign in to comment.