We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18353f7 + 50044f6 commit f8789bcCopy full SHA for f8789bc
.pre-commit-config.yaml
@@ -1,6 +1,6 @@
1
repos:
2
- repo: https://github.com/astral-sh/ruff-pre-commit
3
- rev: "v0.6.3"
+ rev: "v0.6.5"
4
hooks:
5
- id: ruff
6
args: ["--fix"]
@@ -46,7 +46,7 @@ repos:
46
# on <3.11
47
- exceptiongroup>=1.0.0rc8
48
- repo: https://github.com/tox-dev/pyproject-fmt
49
- rev: "2.2.1"
+ rev: "2.2.3"
50
51
- id: pyproject-fmt
52
# https://pyproject-fmt.readthedocs.io/en/latest/#calculating-max-supported-python-version
testing/_py/test_local.py
@@ -19,7 +19,7 @@
19
def ignore_encoding_warning():
20
with warnings.catch_warnings():
21
if sys.version_info > (3, 10):
22
- warnings.simplefilter("ignore", EncodingWarning)
+ warnings.simplefilter("ignore", EncodingWarning) # noqa: F821
23
yield
24
25
0 commit comments