From be11d05bc8f473c95e9f4fa6ac08cd340140d61b Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Wed, 7 Aug 2024 19:32:24 -0500 Subject: [PATCH] chore: update lint --- .pre-commit-config.yaml | 6 +++--- setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5ba73b8..db4567b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,18 +10,18 @@ repos: - id: isort - repo: https://github.com/psf/black - rev: 24.4.2 + rev: 24.8.0 hooks: - id: black name: black - repo: https://github.com/pycqa/flake8 - rev: 7.1.0 + rev: 7.1.1 hooks: - id: flake8 - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.10.1 + rev: v1.11.1 hooks: - id: mypy additional_dependencies: [types-PyYAML, types-requests, pydantic, types-setuptools] diff --git a/setup.py b/setup.py index 41e8c42..2b8772e 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,11 @@ "websocket-client", # Used for web socket integration testing ], "lint": [ - "black>=24.4.2,<25", # Auto-formatter and linter - "mypy>=1.10.1,<2", # Static type analyzer + "black>=24.8.0,<25", # Auto-formatter and linter + "mypy>=1.11.1,<2", # Static type analyzer "types-setuptools", # Needed for mypy type shed "types-requests", # Needed for mypy type shed - "flake8>=7.1.0,<8", # Style linter + "flake8>=7.1.1,<8", # Style linter "flake8-breakpoint>=1.1.0,<2", # Detect breakpoints left in code "flake8-print>=5.0.0,<6", # Detect print statements left in code "isort>=5.13.2,<6", # Import sorting linter