pre-commit: Bump versions
hacking now has a native hook. Change-Id: Ibdf50f4e1e1cfe6056f25322f66d4e95f5930dc0 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
parent
712ec48ab4
commit
5587e9555e
@ -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:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
|
rev: v4.5.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
# Replaces or checks mixed line ending
|
# Replaces or checks mixed line ending
|
||||||
@ -27,13 +18,9 @@ repos:
|
|||||||
- id: debug-statements
|
- id: debug-statements
|
||||||
- id: check-yaml
|
- id: check-yaml
|
||||||
files: .*\.(yaml|yml)$
|
files: .*\.(yaml|yml)$
|
||||||
- repo: local
|
- repo: https://opendev.org/openstack/hacking
|
||||||
|
rev: 6.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: hacking
|
||||||
name: flake8
|
additional_dependencies: []
|
||||||
additional_dependencies:
|
|
||||||
- hacking>=3.0.1,<3.1.0
|
|
||||||
language: python
|
|
||||||
entry: flake8
|
|
||||||
files: '^.*\.py$'
|
|
||||||
exclude: '^(doc|releasenotes|tools)/.*$'
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
||||||
|
@ -135,7 +135,7 @@ def to_primitive(value, convert_instances=False, convert_datetime=True,
|
|||||||
|
|
||||||
# value of itertools.count doesn't get caught by nasty_type_tests
|
# value of itertools.count doesn't get caught by nasty_type_tests
|
||||||
# and results in infinite loop when list(value) is called.
|
# and results in infinite loop when list(value) is called.
|
||||||
if type(value) == itertools.count:
|
if type(value) is itertools.count:
|
||||||
return fallback(value)
|
return fallback(value)
|
||||||
|
|
||||||
if any(test(value) for test in _nasty_type_tests):
|
if any(test(value) for test in _nasty_type_tests):
|
||||||
|
Loading…
Reference in New Issue
Block a user