fix: add dev dependency group to pyproject.toml for CI

CI runs `uv sync --group dev` but only a `test` group existed.
Renamed to `dev` and added ruff + black so Docker Publish can pass.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
anoracleofra-code
2026-03-26 06:33:22 -06:00
parent 7084950896
commit 09e39de4ef
2 changed files with 139 additions and 9 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
[project]
name = "backend"
version = "0.9.5"
version = "0.9.6"
requires-python = ">=3.10"
dependencies = [
"apscheduler==3.10.3",
@@ -24,4 +24,4 @@ dependencies = [
]
[dependency-groups]
test = ["pytest>=8.3.4", "pytest-asyncio==0.25.0"]
dev = ["pytest>=8.3.4", "pytest-asyncio==0.25.0", "ruff>=0.9.0", "black>=24.0.0"]