From 19d38eeff7ffe36ee9b9d23ef0c75f3f14d8338e Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Thu, 14 Nov 2019 10:55:17 +0100 Subject: [PATCH 1/2] Update pre-commit dependencies --- .pre-commit-config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index efdc582ba..73c1fa0f9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/asottile/seed-isort-config - rev: v1.9.2 + rev: v1.9.3 hooks: - id: seed-isort-config - repo: https://github.com/pre-commit/mirrors-isort @@ -8,11 +8,11 @@ repos: hooks: - id: isort - repo: https://github.com/ambv/black - rev: stable + rev: 19.10b0 hooks: - id: black - repo: https://gitlab.com/pycqa/flake8 - rev: 3.7.8 + rev: 3.7.9 hooks: - id: flake8 additional_dependencies: @@ -21,7 +21,7 @@ repos: - 'flake8-debugger==3.1.0' - 'flake8-mypy==17.8.0' - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.2.3 + rev: v2.4.0 hooks: - id: trailing-whitespace - id: check-yaml @@ -30,12 +30,12 @@ repos: args: ['--django'] - id: check-json - repo: https://github.com/codespell-project/codespell - rev: v1.15.0 + rev: v1.16.0 hooks: - id: codespell args: ['--exclude-file=frontend/package-lock.json'] - repo: https://github.com/marco-c/taskcluster_yml_validator - rev: v0.0.2 + rev: v0.0.3 hooks: - id: taskcluster_yml - repo: meta From 9ded9fc9f148c0bd230d083729d88b1ab1be5ae3 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Thu, 14 Nov 2019 11:00:53 +0100 Subject: [PATCH 2/2] keep black as stable --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 73c1fa0f9..5a85eb58b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: hooks: - id: isort - repo: https://github.com/ambv/black - rev: 19.10b0 + rev: stable hooks: - id: black - repo: https://gitlab.com/pycqa/flake8