Skip to content

Commit e400806

Browse files
authored
Merge pull request #633 from nose-devs/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 180cc2e + c7496d4 commit e400806

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: end-of-file-fixer
99
- id: trailing-whitespace
1010
- repo: https://github.com/python-jsonschema/check-jsonschema
11-
rev: 0.31.3
11+
rev: 0.33.0
1212
hooks:
1313
- id: check-github-workflows
1414
- id: check-dependabot
@@ -28,13 +28,13 @@ repos:
2828
- id: pyupgrade
2929
args: ["--py37-plus"]
3030
- repo: https://github.com/PyCQA/flake8
31-
rev: 7.1.2
31+
rev: 7.2.0
3232
hooks:
3333
- id: flake8
3434
additional_dependencies:
35-
- 'flake8-bugbear==24.4.26'
36-
- 'flake8-comprehensions==3.14.0'
37-
- 'flake8-typing-as-t==0.0.3'
35+
- 'flake8-bugbear==24.12.12'
36+
- 'flake8-comprehensions==3.16.0'
37+
- 'flake8-typing-as-t==1.0.0'
3838
- repo: https://github.com/sirosen/slyp
3939
rev: 0.8.2
4040
hooks:

nose2/tests/functional/support/scenario/pretty_asserts/conf_on/test_conf_on.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33

44
def test_w_global():
5-
global myglob
5+
global myglob # noqa: F824
66
assert myglob == 2

nose2/tests/functional/support/scenario/pretty_asserts/simple_global/test_simple_global.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33

44
def test_w_global():
5-
global myglob
5+
global myglob # noqa: F824
66
assert myglob == 2

0 commit comments

Comments
 (0)