Skip to content

Commit

Permalink
Add missing build-system in pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
cbornet committed Jul 25, 2024
1 parent 5394763 commit c5d383c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions libs/colbert/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
4 changes: 4 additions & 0 deletions libs/langchain/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ pytest-asyncio = "^0.23.6"

[tool.pytest.ini_options]
asyncio_mode = "auto"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
4 changes: 4 additions & 0 deletions libs/llamaindex/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@ strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
6 changes: 5 additions & 1 deletion libs/tests-utils/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ strict_equality = true
strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
warn_unused_ignores = true

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit c5d383c

Please sign in to comment.