From 4fe3cfdf41dd9de7bd16801313863d2449e13b58 Mon Sep 17 00:00:00 2001 From: slush Date: Wed, 18 Dec 2024 22:58:22 -0600 Subject: [PATCH] chore: updates pins --- .pre-commit-config.yaml | 4 ++-- setup.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8aca554..25f459b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,8 +4,8 @@ repos: hooks: - id: check-yaml -- repo: https://github.com/pre-commit/mirrors-isort - rev: v5.10.1 +- repo: https://github.com/PyCQA/isort + rev: 5.13.2 hooks: - id: isort diff --git a/setup.py b/setup.py index 533b2ff..df02119 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ extras_require = { "test": [ # `test` GitHub Action jobs uses this + "pytest>=6.0", # Core testing package "pytest-xdist", # Multi-process runner "pytest-cov>=4.0.0,<5", # Coverage analyzer plugin "pytest-mock", # For creating mocks @@ -23,7 +24,7 @@ "flake8-print>=5.0.0,<6", # Detect print statements left in code "flake8-pydantic", # For detecting issues with Pydantic models "flake8-type-checking", # Detect imports to move in/out of type-checking blocks - "isort>=5.10.1,<6", # Import sorting linter + "isort>=5.13.2,<6", # Import sorting linter "mdformat>=0.7.19", # Auto-formatter for markdown "mdformat-gfm>=0.3.5", # Needed for formatting GitHub-flavored markdown "mdformat-frontmatter>=0.4.1", # Needed for frontmatters-style headers in issue templates