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 641e209 commit 497a090Copy full SHA for 497a090
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
@@ -73,7 +73,7 @@ dependencies = [
73
74
optional-dependencies.dev = [
75
"mypy==1.17.1",
76
- "tomli", # Needed even on 3.11+ for typechecking with mypy
+ "tomli", # Needed even on 3.11+ for typechecking with mypy
77
"tox",
78
]
79
urls = { Homepage = "https://github.com/python/pyperformance" }
0 commit comments