fix: add [build-system] to data-service and chart-service pyproject.toml

Poetry 2.x requires build-system section, otherwise poetry install fails with exit code 2.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hailin 2026-04-05 00:54:42 -07:00
parent eb04d7da3b
commit 2a5a47b18e
2 changed files with 8 additions and 0 deletions

View File

@ -13,3 +13,7 @@ alembic = "^1.14"
pydantic = "^2.10" pydantic = "^2.10"
pydantic-settings = "^2.7" pydantic-settings = "^2.7"
httpx = "^0.27" httpx = "^0.27"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -16,3 +16,7 @@ pandas = "^2.2"
python-multipart = "^0.0.18" python-multipart = "^0.0.18"
pydantic = "^2.10" pydantic = "^2.10"
pydantic-settings = "^2.7" pydantic-settings = "^2.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"