diff --git a/Justfile b/Justfile index 3a7eb1e..1a841b1 100644 --- a/Justfile +++ b/Justfile @@ -5,13 +5,13 @@ install: uv sync --all-extras --frozen lint: - uv run ruff format . - uv run ruff check . --fix + uv run ruff format + uv run ruff check --fix uv run mypy . lint-ci: - uv run ruff format . --check - uv run ruff check . --no-fix + uv run ruff format --check + uv run ruff check --no-fix uv run mypy . test *args: diff --git a/pyproject.toml b/pyproject.toml index 73d122e..f694e18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,8 @@ packages = [ repository = "https://github.com/modern-python/that-depends" docs = "https://that-depends.readthedocs.io" -[tool.uv] -dev-dependencies = [ +[dependency-groups] +dev = [ "fastapi", "litestar", "httpx",