pre-commit: Bump versions

hacking now has a native hook.

Co-Authored-By: Stephen Finucane <sfinucan@redhat.com>
Change-Id: I42e062a3196c7edf145c54f153e85010406edf6e
This commit is contained in:
Takashi Kajinami 2024-02-02 01:52:58 +09:00
parent 291ad9c778
commit 0bbba47f76
3 changed files with 7 additions and 23 deletions

View File

@ -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.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: []

View File

@ -1,5 +1,3 @@
hacking>=6.1.0,<6.2.0 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
python-barbicanclient>=4.5.2 # Apache-2.0
requests-mock>=1.2.0 # Apache-2.0
@ -11,5 +9,3 @@ testscenarios>=0.4 # Apache-2.0/BSD
testtools>=2.2.0 # MIT
bandit>=1.6.0,<1.7.0 # Apache-2.0
pifpaf>=0.10.0 # Apache-2.0
pre-commit>=2.6.0 # MIT

View File

@ -16,6 +16,8 @@ deps =
commands = stestr run --slowest --concurrency=1 {posargs}
[testenv:pep8]
deps =
pre-commit
commands =
pre-commit run -a
bandit -r castellan -x tests -s B105,B106,B107,B607