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 d7e6548 commit 3894430Copy full SHA for 3894430
src/scikit_build_core/build/metadata.py
@@ -29,9 +29,9 @@ def __dir__() -> list[str]:
29
30
# Use exceptiongroup backport
31
if sys.version_info < (3, 11):
32
- from exceptiongroups import ExceptionGroup # type: ignore[import-not-found]
+ from exceptiongroup import ExceptionGroup
33
34
- errors.ExceptionGroup = ExceptionGroup # type: ignore[misc]
+ errors.ExceptionGroup = ExceptionGroup # type: ignore[misc, assignment]
35
36
37
# If pyproject-metadata eventually supports updates, this can be simplified
0 commit comments