update pre-commit
Code Quality Pipeline / Check Code (pull_request) Failing after 1m45s

This commit is contained in:
brian
2025-03-08 21:19:18 +00:00
parent bbbeb403a8
commit 9af3d9bc54
3 changed files with 1485 additions and 974 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0 rev: v5.0.0
hooks: hooks:
- id: trailing-whitespace - id: trailing-whitespace
- id: end-of-file-fixer - id: end-of-file-fixer
@@ -9,7 +9,7 @@ repos:
- id: double-quote-string-fixer - id: double-quote-string-fixer
- id: name-tests-test - id: name-tests-test
- repo: https://github.com/asottile/setup-cfg-fmt - repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.5.0 rev: v2.7.0
hooks: hooks:
- id: setup-cfg-fmt - id: setup-cfg-fmt
- repo: https://github.com/pre-commit/mirrors-isort - repo: https://github.com/pre-commit/mirrors-isort
@@ -23,24 +23,24 @@ repos:
hooks: hooks:
- id: add-trailing-comma - id: add-trailing-comma
- repo: https://github.com/asottile/pyupgrade - repo: https://github.com/asottile/pyupgrade
rev: v3.15.1 rev: v3.19.1
hooks: hooks:
- id: pyupgrade - id: pyupgrade
args: [--py39-plus] args: [--py39-plus]
- repo: https://github.com/PyCQA/flake8 - repo: https://github.com/PyCQA/flake8
rev: 7.0.0 rev: 7.1.2
hooks: hooks:
- id: flake8 - id: flake8
entry: pflake8 entry: pflake8
additional_dependencies: additional_dependencies:
- "pyproject-flake8" - "pyproject-flake8"
- repo: https://github.com/pre-commit/mirrors-mypy - repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0 rev: v1.15.0
hooks: hooks:
- id: mypy - id: mypy
exclude: ^testing/resources/ exclude: ^testing/resources/
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 24.4.2 rev: 25.1.0
hooks: hooks:
- id: black - id: black
language_version: python3.12 language_version: python3.12
@@ -55,7 +55,7 @@ repos:
language: python language: python
types: [ python ] types: [ python ]
- repo: https://github.com/jendrikseipp/vulture - repo: https://github.com/jendrikseipp/vulture
rev: 'v2.6' rev: 'v2.14'
hooks: hooks:
- id: vulture - id: vulture
entry: vulture . --min-confidence 90 --exclude */.venv/*.py,*/tests/*.py entry: vulture . --min-confidence 90 --exclude */.venv/*.py,*/tests/*.py
Generated
+1477 -967
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -32,6 +32,7 @@ pandas = "^2.2.1"
selenium = "^4.18.1" selenium = "^4.18.1"
webdriver-manager = "^4.0.1" webdriver-manager = "^4.0.1"
retry = "^0.9.2" retry = "^0.9.2"
pre-commit = "^4.1.0"
[tool.poetry.group.model.dependencies] [tool.poetry.group.model.dependencies]