Merge branch 'master' into sh_merge_master

This commit is contained in:
Ralf W. Grosse-Kunstleve
2022-04-12 15:48:59 -07:00
12 changed files with 182 additions and 97 deletions

View File

@@ -15,7 +15,7 @@
repos:
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.1.0"
rev: "v4.2.0"
hooks:
- id: check-added-large-files
- id: check-case-conflict
@@ -33,7 +33,7 @@ repos:
# Upgrade old Python syntax
- repo: https://github.com/asottile/pyupgrade
rev: "v2.31.1"
rev: "v2.32.0"
hooks:
- id: pyupgrade
args: [--py36-plus]
@@ -76,7 +76,6 @@ repos:
rev: "v1.2.5"
hooks:
- id: pycln
additional_dependencies: [click<8.1] # Unpin when typer updates
stages: [manual]
# Checking for common mistakes
@@ -111,7 +110,7 @@ repos:
# PyLint has native support - not always usable, but works for us
- repo: https://github.com/PyCQA/pylint
rev: "v2.13.2"
rev: "v2.13.5"
hooks:
- id: pylint
files: ^pybind11
@@ -130,7 +129,7 @@ repos:
rev: "v0.942"
hooks:
- id: mypy
args: [--show-error-codes]
args: []
exclude: ^(tests|docs)/
additional_dependencies: [nox, rich]