diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8c50946ca..b870d3b7d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,20 +1,20 @@ repos: - repo: https://github.com/ambv/black - rev: 22.3.0 + rev: 23.1.0 hooks: - id: black language_version: python3 - repo: https://github.com/pycqa/flake8 - rev: 3.8.3 + rev: 6.0.0 hooks: - id: flake8 - repo: https://github.com/pycqa/isort - rev: 5.7.0 + rev: 5.12.0 hooks: - id: isort args: ["--profile", "black"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: 'v0.812' + rev: 'v1.1.1' hooks: - id: mypy args: ["--ignore-missing-imports"] diff --git a/requirements-dev.txt b/requirements-dev.txt index 57514374e..4e00c4dd2 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -7,13 +7,13 @@ jsonschema==2.6.0 # Formatting/linting -black==22.3.0 +black==23.1.0 pre-commit -flake8==3.9.1 -isort==5.7.0 +flake8==6.0.0 +isort==5.12.0 # Static type checking. -mypy +mypy==1.1.1 # Testing pytest