summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2023-02-24 19:41:55 +0100
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2023-03-11 22:06:31 +0100
commitdb92fbde296782bee7b32c2afc8b9afbb4d24c4a (patch)
tree37825c37879f214ef48e6a4bad66c09b9a94e491 /src
parenta7f7e58cda4b20f24884a1847c273ce7f0c6ba9c (diff)
downloadsetuptools-scm-db92fbde296782bee7b32c2afc8b9afbb4d24c4a.tar.gz
chore: drop utils.iter_entry_points
Diffstat (limited to 'src')
-rw-r--r--src/setuptools_scm/utils.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/setuptools_scm/utils.py b/src/setuptools_scm/utils.py
index 2be1654..d7d661c 100644
--- a/src/setuptools_scm/utils.py
+++ b/src/setuptools_scm/utils.py
@@ -7,7 +7,6 @@ import sys
import warnings
from types import CodeType
from types import FunctionType
-from typing import Iterator
from typing import NamedTuple
from typing import TYPE_CHECKING
@@ -70,11 +69,3 @@ def has_command(name: str, args: list[str] | None = None, warn: bool = True) ->
def require_command(name: str) -> None:
if not has_command(name, warn=False):
raise OSError("%r was not found" % name)
-
-
-def iter_entry_points(
- group: str, name: str | None = None
-) -> Iterator[_t.EntrypointProtocol]:
- from ._entrypoints import iter_entry_points
-
- return iter_entry_points(group, name)