Added Python 3.12 support

This commit is contained in:
2024-09-07 20:21:52 +02:00
parent fa2a70efbf
commit 34953dd739
2 changed files with 4 additions and 3 deletions

View File

@@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
@@ -44,7 +45,7 @@ speed = { file = "requirements/speed.txt" }
where = ["src"]
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311']
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
line-length = 94
[tool.isort]