We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71ec59c commit 15eff0dCopy full SHA for 15eff0d
pyperformance/_pyproject_toml.py
@@ -20,7 +20,7 @@
20
import packaging.version
21
22
try:
23
- import tomllib # type: ignore[import] # tomllib doesn't exist on 3.7-3.10
+ import tomllib # type: ignore[import-not-found] # tomllib doesn't exist on 3.7-3.10
24
except ImportError:
25
import tomli as tomllib
26
pyproject.toml
@@ -72,8 +72,8 @@ dependencies = [
72
]
73
74
optional-dependencies.dev = [
75
- "mypy==1.2",
76
- "tomli", # Needed even on 3.11+ for typechecking with mypy
+ "mypy==1.17.1",
+ "tomli", # Needed even on 3.11+ for typechecking with mypy
77
"tox",
78
79
urls = { Homepage = "https://github.com/python/pyperformance" }
0 commit comments