Probably fixed Python 3.12 support
All checks were successful
Tests / test (3.10) (push) Successful in 1m5s
Tests / test (3.11) (push) Successful in 1m0s
Tests / test (3.12) (push) Successful in 1m7s
Tests / test (3.9) (push) Successful in 1m0s

This commit is contained in:
Profitroll 2024-10-07 10:22:57 +00:00
parent 1a07888096
commit 892f37cda4
2 changed files with 3 additions and 5 deletions

View File

@ -9,7 +9,7 @@ authors = [{ name = "Denis Lehmann" }]
maintainers = [{ name = "Profitroll" }]
description = "A colorful wallpaper generator"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { text = "GPL3" }
classifiers = [
"Development Status :: 3 - Alpha",
@ -17,8 +17,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
@ -45,7 +43,7 @@ dev = { file = "requirements/dev.txt" }
where = ["src"]
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
target-version = ['py39', 'py310', 'py311', 'py312']
[tool.isort]
profile = "black"

View File

@ -1,3 +1,3 @@
colour==0.1.5
numpy~=1.24.0,<1.25.0
numpy~=2.0.1,<2.1.0
pillow~=10.4.0