Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
# pre-commit install -t pre-commit -t pre-push

repos:
- repo: https://github.com/psf/black
rev: 24.4.2
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black
- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.21.2
hooks:
- id: pyupgrade
- repo: https://github.com/pre-commit/mirrors-prettier
Expand All @@ -17,7 +17,7 @@ repos:
- id: prettier
exclude: centos_playground/pkg_survey/result*
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
# - id: check-added-large-files # this is a research repo, we can have big files here
- id: check-ast
Expand All @@ -28,7 +28,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/PyCQA/flake8
rev: 7.1.0
rev: 7.3.0
hooks:
- id: flake8
args:
Expand All @@ -40,9 +40,9 @@ repos:
# - id: mypy
# args: [--no-strict-optional, --ignore-missing-imports]
- repo: https://github.com/packit/pre-commit-hooks
rev: v1.2.0
rev: v1.3.0
hooks:
- id: check-rebase
args:
- https://github.com/packit/research.git
stages: [manual, push]
stages: [manual, pre-push]
2 changes: 1 addition & 1 deletion research/source-git/fedora-spec-files/generate-data.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/python3
""" Generate %patch, %source and %prep data about most patched Fedora spec files. """
"""Generate %patch, %source and %prep data about most patched Fedora spec files."""
import json
import pathlib
import re
Expand Down