Skip to content

Commit caca674

Browse files
authored
Add missing build-system in pyproject (#617)
1 parent 5394763 commit caca674

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

libs/colbert/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,7 @@ strict_optional = true
4747
warn_redundant_casts = true
4848
warn_return_any = true
4949
warn_unused_ignores = true
50+
51+
[build-system]
52+
requires = ["poetry-core"]
53+
build-backend = "poetry.core.masonry.api"

libs/langchain/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,7 @@ pytest-asyncio = "^0.23.6"
4242

4343
[tool.pytest.ini_options]
4444
asyncio_mode = "auto"
45+
46+
[build-system]
47+
requires = ["poetry-core"]
48+
build-backend = "poetry.core.masonry.api"

libs/llamaindex/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,7 @@ strict_optional = true
6767
warn_redundant_casts = true
6868
warn_return_any = true
6969
warn_unused_ignores = true
70+
71+
[build-system]
72+
requires = ["poetry-core"]
73+
build-backend = "poetry.core.masonry.api"

libs/tests-utils/pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,8 @@ strict_equality = true
3434
strict_optional = true
3535
warn_redundant_casts = true
3636
warn_return_any = true
37-
warn_unused_ignores = true
37+
warn_unused_ignores = true
38+
39+
[build-system]
40+
requires = ["poetry-core"]
41+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)