Ensures compability with Python 3.12.

This commit is contained in:
Cédric Bonhomme 2023-12-31 00:28:13 +01:00
parent c6437af0d1
commit 29322e759a
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
2 changed files with 46 additions and 45 deletions

View file

@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
@ -44,11 +45,11 @@ stegano-steganalysis-parity = "bin.parity:main"
stegano-steganalysis-statistics = "bin.statistics:main"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
python = ">=3.8.1,<3.13"
pillow = ">=9.5,<11.0"
piexif = "^1.1.3"
crayons = "^0.4.0"
opencv-python = "^4.7.0.72"
opencv-python = "^4.8.1.78"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"