Skip to content

Commit 50dda7a

Browse files
authored
Merge pull request #1236 from grapestore/fix/restrict-python-version-range-in-pyproject
fix: restrict Python version range in pyproject.toml
2 parents f39be57 + 13b30f7 commit 50dda7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]
10-
python = ">=3.11"
10+
python = ">=3.11, <4"
1111
beautifulsoup4 = ">=4.12.2"
1212
colorama = ">=0.4.6"
1313
duckduckgo_search = ">=4.1.1"
@@ -36,7 +36,7 @@ mistune = "^3.0.2"
3636
htmldocx = "^0.0.6"
3737
python-docx = "^1.1.0"
3838
lxml = { version = ">=4.9.2", extras = ["html_clean"] }
39-
unstructured = ">=0.13,<0.16"
39+
unstructured = ">=0.13"
4040
tiktoken = ">=0.7.0"
4141
json-repair = "^0.29.8"
4242
json5 = "^0.9.25"

0 commit comments

Comments
 (0)