From 77997caf1739182d2728ca80411cfe3c9eac14ef Mon Sep 17 00:00:00 2001 From: Wenl4ng <15861868579@163.com> Date: Wed, 7 May 2025 16:29:23 +0800 Subject: [PATCH] feat: add 3.11version support --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6046ed4..a3ddc46 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.11" +requires-python = ">=3.8, <3.12" classifiers = [ "Development Status :: 1 - Planning", "Intended Audience :: Developers", @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering :: Artificial Intelligence", "License :: OSI Approved :: Mulan Permissive Software License v2 (MulanPSL-2.0)", ] @@ -71,7 +72,7 @@ packages = ["src/openmind_hub"] [tool.black] line-length = 120 -target-version = ['py38', 'py39', 'py310'] +target-version = ['py38', 'py39', 'py310', 'py311'] include = '\.pyi?$' [tool.ruff] -- Gitee