diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 958cc75..4831006 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,8 @@ jobs: with: cache-dependency-path: pyproject.toml - name: dependencies - run: uv pip install --system .[test,typehints,myst] coverage-rich 'anyconfig[toml] >=0.14' + # TODO: remove typer constraint after fixing https://github.com/WaylonWalker/coverage-rich/issues/4 + run: uv pip install --system .[test,typehints,myst] coverage-rich 'typer <0.14' 'anyconfig[toml] >=0.14' - name: tests run: coverage run -m pytest --verbose --color=yes - name: show coverage diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5f01059..94116f3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ repos: hooks: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.1 + rev: v0.8.2 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix]