Closes #19889: Drop support for Python 3.10 & 3.11

This commit is contained in:
Jeremy Stretch
2025-09-02 15:38:32 -04:00
parent d8822c8bca
commit b1439dc298
10 changed files with 15 additions and 27 deletions

View File

@@ -4,7 +4,7 @@
[project]
name = "netbox"
version = "4.4.0"
requires-python = ">=3.10"
requires-python = ">=3.12"
description = "The premier source of truth powering network automation."
readme = "README.md"
license = "Apache-2.0"
@@ -15,8 +15,6 @@ classifiers = [
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
@@ -28,7 +26,7 @@ Issues = "https://github.com/netbox-community/netbox/issues"
[tool.black]
line-length = 120
target_version = ['py310', 'py311', 'py312']
target_version = ['py312']
skip-string-normalization = true
[tool.isort]