Skip to content

Commit

Permalink
[ci] Update linters
Browse files Browse the repository at this point in the history
  • Loading branch information
tysmith committed Dec 6, 2023
1 parent e18c982 commit 68d4d14
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ repos:
hooks:
- id: yesqa
- repo: https://github.com/asottile/pyupgrade
rev: v3.8.0
rev: v3.15.0
hooks:
- id: pyupgrade
args: ['--py38-plus']
- repo: https://github.com/ambv/black
rev: 23.3.0
rev: 23.11.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -41,7 +41,7 @@ repos:
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
exclude_types: [json]
Expand Down
2 changes: 1 addition & 1 deletion grizzly/reduce/strategies/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Strategy(ABC):
"""A strategy is a procedure for repeatedly running a testcase to find the smallest
equivalent test.
Implementors must define these class attributes:
Implementers must define these class attributes:
Class Attributes:
name (str): The strategy name.
Expand Down
2 changes: 1 addition & 1 deletion grizzly/reduce/strategies/beautify.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _split_normal_lines(data):
class _BeautifyStrategy(Strategy, ABC):
"""A strategy that beautifies code in the testcase to make it more reducible.
Implementors must define these class attributes:
Implementers must define these class attributes:
Class attributes:
all_extensions (set(str)): Set of all file extensions to beautify.
Expand Down
2 changes: 1 addition & 1 deletion grizzly/reduce/strategies/lithium.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class _LithiumStrategy(Strategy, ABC):
"""Use a Lithium `Strategy`/`Testcase` pair to reduce the given Grizzly `TestCase`
set.
Implementors must define these class attributes:
Implementers must define these class attributes:
Class attributes:
name (str): The strategy name.
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ skip_install = true
commands =
pylint -j 0 {posargs}
deps =
pylint==2.17.4
pylint==3.0.2
usedevelop = true

[testenv:pypi]
Expand Down

0 comments on commit 68d4d14

Please sign in to comment.