Skip to content

Commit 15eff0d

Browse files
Bump mypy from 1.2 to 1.17.1 (#411)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 71ec59c commit 15eff0d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyperformance/_pyproject_toml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import packaging.version
2121

2222
try:
23-
import tomllib # type: ignore[import] # tomllib doesn't exist on 3.7-3.10
23+
import tomllib # type: ignore[import-not-found] # tomllib doesn't exist on 3.7-3.10
2424
except ImportError:
2525
import tomli as tomllib
2626

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ dependencies = [
7272
]
7373

7474
optional-dependencies.dev = [
75-
"mypy==1.2",
76-
"tomli", # Needed even on 3.11+ for typechecking with mypy
75+
"mypy==1.17.1",
76+
"tomli", # Needed even on 3.11+ for typechecking with mypy
7777
"tox",
7878
]
7979
urls = { Homepage = "https://github.com/python/pyperformance" }

0 commit comments

Comments
 (0)