Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.13"

- run: pip install pre-commit
- run: SKIP=mypy pre-commit run --all-files
Expand All @@ -39,7 +39,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.13"

- run: pip install pre-commit
- run: pre-commit run mypy --all-files
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_language_version:
python: python3.8
python: python3.13

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
Expand All @@ -20,18 +20,18 @@ repos:
- id: gitlint

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
rev: v1.18.2
hooks:
- id: mypy
exclude: ^(tests|benches)/.*$
args: ["--ignore-missing-imports"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.9
rev: v0.13.1
hooks:
- id: ruff-format

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.9
rev: v0.13.1
hooks:
- id: ruff
Loading