From 8d74305e255b3a37377fb630bd51984e71fdfda0 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Sat, 17 May 2025 22:49:52 +0300 Subject: [PATCH] feat: update pyproject.toml to support >= py39 --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6f12720..90a526b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ authors = [ { name = "Xianpeng Shen", email = "xianpeng.shen@gmail.com" }, { name = "Brendan Doherty", email = "2bndy5@gmail.com" }, ] +requires-python = ">=3.9" classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers "Development Status :: 5 - Production/Stable", @@ -22,7 +23,11 @@ classifiers = [ "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Operating System :: MacOS", - "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.13", "Topic :: Software Development :: Build Tools", ] dynamic = ["version"]