Update pyproject.toml to specify Python 3.10 as the minimum required version.
This commit is contained in:
parent
648a87653f
commit
bd50827ffc
1 changed files with 4 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ authors = [
|
||||||
description = "LightRAG: Simple and Fast Retrieval-Augmented Generation"
|
description = "LightRAG: Simple and Fast Retrieval-Augmented Generation"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = {text = "MIT"}
|
license = {text = "MIT"}
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.10"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
|
|
@ -91,3 +91,6 @@ version = {attr = "lightrag.__version__"}
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
[tool.setuptools.package-data]
|
||||||
lightrag = ["api/webui/**/*"]
|
lightrag = ["api/webui/**/*"]
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
target-version = "py310"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue