From 444e2adc404af0feeee714d7cec2b5dc3a4618ad Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Fri, 16 Jan 2026 14:39:33 +0000 Subject: [PATCH] Add dependency versioning preference to coding standards --- SPEC.md | 1 + 1 file changed, 1 insertion(+) diff --git a/SPEC.md b/SPEC.md index 96f4d26..d9f7afd 100644 --- a/SPEC.md +++ b/SPEC.md @@ -313,6 +313,7 @@ Format as structured JSON. - **Docstrings:** Required on modules and classes - **Logging:** Use `logging` module, no `print()` in production - **Pre-commit:** Enforce ruff and pytest before commits +- **Dependencies:** No pinned versions unless required (e.g., `fastapi` not `fastapi==0.109.0`) - prefer latest for security ### File Structure ```