Skip to content

Commit 73fa1a3

Browse files
committed
chore: lint
1 parent b7986e4 commit 73fa1a3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ repos:
1010
- id: isort
1111

1212
- repo: https://github.com/psf/black
13-
rev: 24.4.2
13+
rev: 24.8.0
1414
hooks:
1515
- id: black
1616
name: black
1717

1818
- repo: https://github.com/pycqa/flake8
19-
rev: 7.0.0
19+
rev: 7.1.1
2020
hooks:
2121
- id: flake8
2222

2323
- repo: https://github.com/pre-commit/mirrors-mypy
24-
rev: v1.10.0
24+
rev: v1.11.1
2525
hooks:
2626
- id: mypy
2727
additional_dependencies: [types-PyYAML, types-requests, types-setuptools, pydantic]

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"websocket-client", # Used for web socket integration testing
1919
],
2020
"lint": [
21-
"black>=24.4.2,<25", # Auto-formatter and linter
22-
"mypy>=1.10.0,<2", # Static type analyzer
21+
"black>=24.8.0,<25", # Auto-formatter and linter
22+
"mypy>=1.11.1,<2", # Static type analyzer
2323
"types-setuptools", # Needed for mypy type shed
24-
"flake8>=7.0.0,<8", # Style linter
24+
"flake8>=7.1.1,<8", # Style linter
2525
"flake8-breakpoint>=1.1.0,<2", # Detect breakpoints left in code
2626
"flake8-print>=5.0.0,<6", # Detect print statements left in code
2727
"isort>=5.13.2,<6", # Import sorting linter

0 commit comments

Comments
 (0)