Specify Python version range

This commit is contained in:
Wiktor Zykubek 2023-07-10 01:30:06 +02:00
parent 3f477fb62b
commit e4ff91e9ec
No known key found for this signature in database
GPG Key ID: 0DAA9DC01449FCA2

View File

@ -8,7 +8,7 @@ readme = "README.md"
packages = [{include = "openfm_qt"}]
[tool.poetry.dependencies]
python = "^3.11"
python = ">=3.11,<3.12"
requests = "^2.31.0"
PySide6 = "^6.5.1.1"
@ -19,5 +19,5 @@ openfm-qt = "openfm_qt.__main__:main"
script = "prebuild.py"
[build-system]
requires = ["poetry-core", "PySide6"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"