Closes #19095: Introduce support for Python 3.13 & 3.14

This commit is contained in:
Jeremy Stretch
2025-09-08 15:36:12 -04:00
parent e221f1fffa
commit ec9da88134
7 changed files with 15 additions and 10 deletions

View File

@@ -16,6 +16,8 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
@@ -26,7 +28,7 @@ Issues = "https://github.com/netbox-community/netbox/issues"
[tool.black]
line-length = 120
target_version = ['py312']
target_version = ['py312', 'py313', 'py314']
skip-string-normalization = true
[tool.isort]