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 2d95414 commit 1d92d60Copy full SHA for 1d92d60
src/scikit_build_core/metadata/__init__.py
@@ -82,7 +82,7 @@ def _process_dynamic_metadata(field: str, action: Callable[[str], str], result:
82
if not isinstance(result, dict) or not all(
83
isinstance(d, dict) and all(isinstance(k, str) and isinstance(v, str) for k, v in d.items()) for d in result.values()
84
):
85
- msg = f"Field 'entry-points' must be a dictionary of dictionary of strings"
+ msg = f"Field 'entry-points' must be a dictionary of dictionary of strings"
86
raise RuntimeError(msg)
87
if field == "optional-dependencies":
88
0 commit comments