build: Drop support for Python 3.9

This commit is contained in:
Paul Gauthier (aider) 2025-05-09 08:56:27 -07:00
parent af9ae849bd
commit c6ad5c8cd2

View file

@ -12,11 +12,10 @@ classifiers = [
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python", "Programming Language :: Python",
"Topic :: Software Development", "Topic :: Software Development",
] ]
requires-python = ">=3.9,<3.13" requires-python = ">=3.10,<3.13"
dynamic = ["dependencies", "optional-dependencies", "version"] dynamic = ["dependencies", "optional-dependencies", "version"]
[project.urls] [project.urls]