From e552f8d9949929dc25f9ec255e7630a1a24081e7 Mon Sep 17 00:00:00 2001 From: Ben Hearsum Date: Thu, 4 Jun 2026 08:25:13 -0400 Subject: [PATCH] fix: stop declaring support for Python 3.9 Follow up from https://github.com/mozilla-releng/simple-github/pull/101, which actually dropped support for it. --- pyproject.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 675b28c..88b0748 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,12 +10,7 @@ readme = "README.md" classifiers = [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3", "Topic :: Software Development", ] requires-python = ">=3.10"