We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d7bee9 commit db02304Copy full SHA for db02304
pyproject.toml
@@ -36,7 +36,7 @@ dependencies = [
36
"pyproject_hooks",
37
# not actually a runtime dependency, only supplied as there is not "recommended dependency" support
38
'colorama; os_name == "nt"',
39
- 'importlib-metadata >= 0.22; python_version < "3.8"',
+ 'importlib-metadata >= 4.6; python_version < "3.10"',
40
'tomli >= 1.1.0; python_version < "3.11"',
41
]
42
src/build/_importlib.py
@@ -1,7 +1,7 @@
1
import sys
2
3
4
-if sys.version_info >= (3, 8):
+if sys.version_info >= (3, 10):
5
from importlib import metadata
6
else:
7
import importlib_metadata as metadata
0 commit comments