From bd50827ffcbbce05fc8649e3611e5bad6641b23a Mon Sep 17 00:00:00 2001 From: yangdx Date: Sat, 5 Jul 2025 23:00:22 +0800 Subject: [PATCH] Update `pyproject.toml` to specify Python 3.10 as the minimum required version. --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b87df3bc..2bb1f288 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ description = "LightRAG: Simple and Fast Retrieval-Augmented Generation" readme = "README.md" license = {text = "MIT"} -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python :: 3", @@ -91,3 +91,6 @@ version = {attr = "lightrag.__version__"} [tool.setuptools.package-data] lightrag = ["api/webui/**/*"] + +[tool.ruff] +target-version = "py310"