From 43864b2f7ec3b71d5b181eafb47b4ded6c197b8f Mon Sep 17 00:00:00 2001 From: wojnilowicz Date: Mon, 2 Sep 2024 22:37:21 +0200 Subject: [PATCH] build: remove upper version requirement on Python (#106) 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. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 462a9ed..b1a8360 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }