From 9baeee486ab7e54e1e3e0df18524670bb75f90f4 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 29 Aug 2024 10:42:35 +0100 Subject: [PATCH] pre-commit: Bump dependencies We migrate 'hacking' from a local plugin to hacking's native plugin, which has been around for some time now. We also stop setting the default Python version: everything is Python 3 nowadays. Change-Id: I50d2f0c9ac5808c2c91ecae978c80212ea9e6859 Signed-off-by: Stephen Finucane --- .pre-commit-config.yaml | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 08aef91b..ee73d3a1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,6 @@ -# We from the Oslo project decided to pin repos based on the -# commit hash instead of the version tag to prevend arbitrary -# code from running in developer's machines. To update to a -# newer version, run `pre-commit autoupdate` and then replace -# the newer versions with their commit hash. - -default_language_version: - python: python3 - repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0 + rev: v4.6.0 hooks: - id: trailing-whitespace # Replaces or checks mixed line ending @@ -27,13 +18,9 @@ repos: - id: debug-statements - id: check-yaml files: .*\.(yaml|yml)$ - - repo: local + - repo: https://opendev.org/openstack/hacking + rev: 7.0.0 hooks: - - id: flake8 - name: flake8 - additional_dependencies: - - hacking>=3.0.1,<3.1.0 - language: python - entry: flake8 - files: '^.*\.py$' - exclude: '^(doc|releasenotes|tools)/.*$' + - id: hacking + additional_dependencies: [] + exclude: '^(doc|releasenotes)/.*$'