Update `pyproject.toml` to specify Python 3.10 as the minimum required version.
Browse files- pyproject.toml +4 -1
pyproject.toml
CHANGED
@@ -11,7 +11,7 @@ authors = [
|
|
11 |
description = "LightRAG: Simple and Fast Retrieval-Augmented Generation"
|
12 |
readme = "README.md"
|
13 |
license = {text = "MIT"}
|
14 |
-
requires-python = ">=3.
|
15 |
classifiers = [
|
16 |
"Development Status :: 4 - Beta",
|
17 |
"Programming Language :: Python :: 3",
|
@@ -91,3 +91,6 @@ version = {attr = "lightrag.__version__"}
|
|
91 |
|
92 |
[tool.setuptools.package-data]
|
93 |
lightrag = ["api/webui/**/*"]
|
|
|
|
|
|
|
|
11 |
description = "LightRAG: Simple and Fast Retrieval-Augmented Generation"
|
12 |
readme = "README.md"
|
13 |
license = {text = "MIT"}
|
14 |
+
requires-python = ">=3.10"
|
15 |
classifiers = [
|
16 |
"Development Status :: 4 - Beta",
|
17 |
"Programming Language :: Python :: 3",
|
|
|
91 |
|
92 |
[tool.setuptools.package-data]
|
93 |
lightrag = ["api/webui/**/*"]
|
94 |
+
|
95 |
+
[tool.ruff]
|
96 |
+
target-version = "py310"
|