]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
pre-commit: Use Python 3 for everything
authorStephen Finucane <stephen@that.guru>
Fri, 10 Apr 2020 16:33:26 +0000 (17:33 +0100)
committerStephen Finucane <stephen@that.guru>
Tue, 14 Apr 2020 10:10:32 +0000 (11:10 +0100)
This lets us use e.g. f-strings. We also bump the version of the default
pre-commit lib and migrate to the upstream flake8 plugin, since the old
one is now deprecated.

Signed-off-by: Stephen Finucane <stephen@that.guru>
.pre-commit-config.yaml

index bea1187ae0f6c5d6d7dd80754a38cf4e157f4594..8a6e51c275708754f41eba02c5c0fcc483920be2 100644 (file)
@@ -1,16 +1,22 @@
+---
+default_language_version:
+  # force all unspecified python hooks to run python3
+  python: python3
 repos:
 - repo: https://github.com/pre-commit/pre-commit-hooks
-  rev: v2.3.0
+  rev: v2.5.0
   hooks:
   - id: check-executables-have-shebangs
   - id: check-merge-conflict
   - id: check-yaml
   - id: end-of-file-fixer
     exclude: (.*\.mbox)|(.*\.css)|(.*\.json)|(.*\.js)|(.*\.svg)|(.*/mails/.*-subject\.txt)
-  - id: flake8
-    exclude: ^patchwork/migrations
   - id: trailing-whitespace
     exclude: (.*\.mbox)|(.*\.svg)
+- repo: https://gitlab.com/pycqa/flake8
+  rev: 3.7.9
+  hooks:
+  - id: flake8
 - repo: https://github.com/Lucas-C/pre-commit-hooks
   rev: v1.1.7
   hooks: