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:
parent
eb04d7da3b
commit
2a5a47b18e
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue