Dropped Python 3.8 support.

This commit is contained in:
Cédric Bonhomme 2023-12-31 00:38:32 +01:00
parent 29322e759a
commit a3dd6be618
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
11 changed files with 189 additions and 70 deletions

View file

@ -22,7 +22,6 @@ classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Security",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
@ -45,7 +44,7 @@ stegano-steganalysis-parity = "bin.parity:main"
stegano-steganalysis-statistics = "bin.statistics:main"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
python = ">=3.9,<3.13"
pillow = ">=9.5,<11.0"
piexif = "^1.1.3"
crayons = "^0.4.0"
@ -56,6 +55,7 @@ mypy = "^1.2.0"
flake8 = "^6.0.0"
nose2 = "^0.12.0"
Sphinx = "^6.2.1"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry>=1.3.2"]