From d7ee162852e68621da1b212c330ebbac119b7f54 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Tue, 16 Jan 2024 16:36:50 +0200 Subject: [PATCH] Add support for Python 3.12 Fedora 39 ships with Python 3.12 by default, which Dangerzone previously did not support due to limitations from the PySide6 package. Now that the PySide6 package has been updated to 6.6.1, and the limitation has lifted, we should to reflect this in pyproject.toml. --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 13b38e6..17eaaba 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1036,5 +1036,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" -python-versions = ">=3.8,<3.12" -content-hash = "696c6cb6374d828dfa98b826ca8f1553a67843e5ed9e52d3b6582fdf9a6d54f5" +python-versions = ">=3.8,<3.13" +content-hash = "9a27da696ea605d3c8cf038c9aa16eb65d79108dbe573be826c4a4ec2e11beb7" diff --git a/pyproject.toml b/pyproject.toml index 715aacf..b876135 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ include = [ ] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.8,<3.13" click = "*" appdirs = "*" PySide6 = "^6.4.1"