Skip to content

Commit e89f451

Browse files
committed
Merge remote-tracking branch 'origin/master' into depr
2 parents 971ef4f + e5f292f commit e89f451

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.pre-commit-config.yaml

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.2.2
3+
rev: v0.4.2
44
hooks:
55
- id: ruff
66
args: [--fix]
77

88
- repo: https://github.com/psf/black
9-
rev: 24.2.0
9+
rev: 24.4.2
1010
hooks:
1111
- id: black
1212
language_version: python3.12
1313

1414
- repo: https://github.com/pre-commit/mirrors-mypy
15-
rev: v1.8.0
15+
rev: v1.10.0
1616
hooks:
1717
- id: mypy
1818
additional_dependencies:
@@ -26,7 +26,14 @@ repos:
2626
- id: prettier
2727

2828
- repo: https://github.com/pre-commit/pre-commit-hooks
29-
rev: v4.5.0
29+
rev: v4.6.0
3030
hooks:
3131
- id: end-of-file-fixer
3232
- id: trailing-whitespace
33+
34+
ci:
35+
autofix_commit_msg: "[pre-commit.ci] auto fixes from pre-commit.com hooks"
36+
autofix_prs: true
37+
autoupdate_commit_msg: "[pre-commit.ci] pre-commit autoupdate"
38+
autoupdate_schedule: quarterly
39+
submodules: false

README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ Unreleased
8585

8686
- Fix warnings due to use of deprecated AST classes
8787

88+
Version 2.5.1 (February 25, 2024)
89+
90+
- Fix packaging metadata that still incorrectly declared support for Python 3.7
91+
8892
Version 2.5.0 (February 25, 2024)
8993

9094
- Update bundled typeshed

typeshed_client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
)
2020
from .resolver import ImportedInfo, Resolver
2121

22-
__version__ = "2.5.0"
22+
__version__ = "2.5.1"
2323

2424

2525
__all__ = [

0 commit comments

Comments
 (0)