deps-upgrade(deps): ⬆️ Update core dependencies (pytest, black, mypy) to latest stable versions

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-04-18 12:09:08 -07:00
parent a09b70228e
commit f70c2c10a2

View file

@ -5,8 +5,7 @@ description = "Automated commit message generation service using local LLM infer
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lilith-fastapi-service-base>=2.1.0",
"lilith-auto-commit-pipeline>=0.1.0",
"lilith-service-fastapi-bootstrap>=4.0.0",
"lilith-pipeline-framework>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0",
@ -43,3 +42,13 @@ packages = ["src/auto_commit_service"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
# Resolve workspace Python packages from local source checkouts. This makes
# `uv sync` work without needing the packages on a PyPI registry — each
# referenced path points at the in-repo source of the library.
[tool.uv.sources]
lilith-pipeline-framework = { path = "../../../@packages/@py/pipeline-framework", editable = true }
lilith-service-fastapi-bootstrap = { path = "../../../@packages/@py/service-fastapi-bootstrap", editable = true }
lilith-model-boss = { path = "../../@model-boss/packages/core-py", editable = true }
lilith-queue-cli = { path = "../../../@packages/@py/queue", editable = true }
lilith-service-addresses = { path = "../../../@packages/@py/service-addresses", editable = true }