Skip to content
Open
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: end-of-file-fixer
exclude: tests/testdata
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.8"
rev: "v0.15.9"
hooks:
- id: ruff-check
args: ["--fix"]
Expand Down Expand Up @@ -68,7 +68,7 @@ repos:
]
stages: [manual]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.19.1
rev: v1.20.0
hooks:
- id: mypy
language: python
Expand All @@ -81,6 +81,6 @@ repos:
- id: prettier
args: [--prose-wrap=always, --print-width=88]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.20.0"
rev: "v2.21.0"
hooks:
- id: pyproject-fmt
13 changes: 1 addition & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,18 +129,7 @@ show_error_codes = true
strict = true
warn_redundant_casts = true
warn_unreachable = true

[[tool.mypy.overrides]]
# Importlib typeshed stubs do not include the private functions we use
module = [
"_io.*",
"gi.*",
"importlib.*",
"numpy.*",
"pytest",
"setuptools",
]
ignore_missing_imports = true
overrides = [ { ignore_missing_imports = true } ]

[tool.pytest]
ini_options.addopts = '-m "not acceptance"'
Expand Down
Loading