Files
thrillwiki_django_no_react/pyproject.toml
pacnpal fbfda9a3d8 chore(deps): upgrade Pillow to 12.1.0
- Pillow 11.1.0 → 12.1.0
- Add Django 6 upgrade notes (blocked by CheckConstraint API change)
- Update uv.lock
2026-01-14 15:43:43 -05:00

40 lines
1.2 KiB
TOML

[project]
name = "thrillwiki-workspace"
version = "0.1.0"
description = "ThrillWiki - The Ultimate Theme Park Database"
requires-python = ">=3.13"
readme = "docs/README.md"
[tool.uv.workspace]
members = ["backend"]
# Django 6 upgrade commented out - requires CheckConstraint API migration
# See: https://docs.djangoproject.com/en/6.0/releases/6.0/#features-removed-in-6-0
# CheckConstraint(check=...) → CheckConstraint(condition=...) in 50+ files
# [tool.uv]
# override-dependencies = ["django>=6.0"]
# =============================================================================
# Ruff Configuration (shared across workspace)
# =============================================================================
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["apps", "config", "thrillwiki"]
# =============================================================================
# Black Configuration (shared across workspace)
# =============================================================================
[tool.black]
line-length = 120
target-version = ["py313"]