352b93d586
Setting desired version of black to 22.3.0 prevents issues with the click dependency described in the #1966879. Introduction of black 22.3.0 forced style changes in following files: - doc/source/conf.py - jenkins_jobs/local_yaml.py - tests/base.py These changes do not modify behavior of the programs concerned. Signed-off-by: Jiri Podivin <jpodivin@redhat.com> Change-Id: I42a46f9ed31ea0f404d698eec73d30975e2e6f4c
26 lines
762 B
YAML
26 lines
762 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/python/black.git
|
|
rev: 22.3.0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks.git
|
|
rev: v2.2.3
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
- repo: https://gitlab.com/pycqa/flake8.git
|
|
rev: 3.7.8
|
|
hooks:
|
|
- id: flake8
|
|
args: ['--config=setup.cfg']
|
|
types: [python]
|
|
additional_dependencies:
|
|
- flake8>=3.7.8
|
|
- flake8-black
|
|
- black==21.12b0 # the last version that supports Python 2
|
|
language_version: python3
|