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.
This commit is contained in:
Alex Pyrgiotis 2024-01-16 16:36:50 +02:00
parent 741c8311ee
commit d7ee162852
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
2 changed files with 3 additions and 3 deletions

4
poetry.lock generated
View file

@ -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"

View file

@ -13,7 +13,7 @@ include = [
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
python = ">=3.8,<3.13"
click = "*"
appdirs = "*"
PySide6 = "^6.4.1"