From 7e0bbc0c3127d5a5f5bd72af3c95e4191e441205 Mon Sep 17 00:00:00 2001 From: Wenl4ng <15861868579@163.com> Date: Thu, 29 May 2025 15:12:14 +0800 Subject: [PATCH] feat:python version support >=3.8,<3.14 --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a3ddc46..64380ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ { email = "dev@public.openmind.cn" }, ] dependencies = ["filelock>=3.14.0", "requests==2.32.2", "tqdm>=4.66.4", "pyyaml>=6.0.1", "jinja2>=3.1.4", "fsspec>=2024.2.0", "urllib3>=2.0.0"] -requires-python = ">=3.8, <3.12" +requires-python = ">=3.8, <3.14" classifiers = [ "Development Status :: 1 - Planning", "Intended Audience :: Developers", @@ -21,6 +21,8 @@ classifiers = [ "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 :: Scientific/Engineering :: Artificial Intelligence", "License :: OSI Approved :: Mulan Permissive Software License v2 (MulanPSL-2.0)", ] @@ -72,7 +74,7 @@ packages = ["src/openmind_hub"] [tool.black] line-length = 120 -target-version = ['py38', 'py39', 'py310', 'py311'] +target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313'] include = '\.pyi?$' [tool.ruff] -- Gitee