From de07539a7b93f307bc6ee2fe54734f852ac746ec Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 6 Feb 2024 15:17:51 +0900 Subject: [PATCH] pre-commit: Bump versions hacking now has a native hook. Co-Authored-By: Stephen Finucane Change-Id: Ib7af2d4299853e9758cbf148908aa1ef5de1b235 --- .pre-commit-config.yaml | 24 +++++------------------- test-requirements.txt | 2 -- 2 files changed, 5 insertions(+), 21 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e84f097a..07917d34 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: ebc15addedad713c86ef18ae9632c88e187dd0af # v3.1.0 + rev: v4.5.0 hooks: - id: trailing-whitespace # Replaces or checks mixed line ending @@ -27,13 +18,8 @@ repos: - id: debug-statements - id: check-yaml files: .*\.(yaml|yml)$ - - repo: local + - repo: https://opendev.org/openstack/hacking + rev: 6.1.0 hooks: - - id: flake8 - name: flake8 - additional_dependencies: - - hacking>=6.1.0,<6.2.0 - language: python - entry: flake8 - files: '^.*\.py$' - exclude: '^(doc|releasenotes|tools)/.*$' + - id: hacking + additional_dependencies: [] diff --git a/test-requirements.txt b/test-requirements.txt index 310af152..09b92414 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,5 +1,3 @@ -hacking>=6.1.0,<6.2.0 # Apache-2.0 - stestr>=2.0.0 # Apache-2.0 testtools>=2.3.0 # MIT oslotest>=3.3.0 # Apache-2.0