mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
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:
parent
741c8311ee
commit
d7ee162852
2 changed files with 3 additions and 3 deletions
4
poetry.lock
generated
4
poetry.lock
generated
|
@ -1036,5 +1036,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = ">=3.8,<3.12"
|
python-versions = ">=3.8,<3.13"
|
||||||
content-hash = "696c6cb6374d828dfa98b826ca8f1553a67843e5ed9e52d3b6582fdf9a6d54f5"
|
content-hash = "9a27da696ea605d3c8cf038c9aa16eb65d79108dbe573be826c4a4ec2e11beb7"
|
||||||
|
|
|
@ -13,7 +13,7 @@ include = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.8,<3.12"
|
python = ">=3.8,<3.13"
|
||||||
click = "*"
|
click = "*"
|
||||||
appdirs = "*"
|
appdirs = "*"
|
||||||
PySide6 = "^6.4.1"
|
PySide6 = "^6.4.1"
|
||||||
|
|
Loading…
Reference in a new issue