From 0486d33523e52b4de067719ae39592fd40d95bbf Mon Sep 17 00:00:00 2001 From: jeremy avnet Date: Tue, 15 Oct 2024 13:19:01 -0700 Subject: [PATCH] Update classifiers to reflect supported Python versions (3.9 - 3.13) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8d8ecfa..b21b383 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] dynamic = ["version"] name = "json-store" -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [] authors = [{name = "jeremy avnet", email = "json-store@theory.org"}] @@ -20,11 +20,11 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ]