diff options
author | Ronny Pfannschmidt <opensource@ronnypfannschmidt.de> | 2023-05-09 13:17:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 13:17:04 +0200 |
commit | 4751f74e4e1478f439ea8fb2102365460acc556b (patch) | |
tree | 24749cb039b171df2690edec2e8cbd2428428eac /testing/test_regressions.py | |
parent | d2087b0c8e52f6600f7f68b74ff688bcdf04aaeb (diff) | |
parent | 2e1ada5f75b74ea181c786550e9e858c02c66547 (diff) | |
download | setuptools-scm-main.tar.gz |
move setuptools integration to private subpackage
Diffstat (limited to 'testing/test_regressions.py')
-rw-r--r-- | testing/test_regressions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_regressions.py b/testing/test_regressions.py index 018f37e..44cc3c0 100644 --- a/testing/test_regressions.py +++ b/testing/test_regressions.py @@ -90,7 +90,7 @@ def test_case_mismatch_on_windows_git(tmp_path: Path) -> None: def test_entrypoints_load() -> None: - d = distribution("setuptools-scm") # type: ignore [no-untyped-call] + d = distribution("setuptools-scm") eps = d.entry_points failed: list[tuple[EntryPoint, Exception]] = [] |