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 3c77bc6 commit e2135d5Copy full SHA for e2135d5
setuptools/command/editable_wheel.py
@@ -563,6 +563,10 @@ def find_module(cls, fullname):
563
def install():
564
if not any(finder == _EditableFinder for finder in sys.meta_path):
565
sys.meta_path.append(_EditableFinder)
566
+
567
+ if not NAMESPACES:
568
+ return
569
570
if not any(hook == _EditableNamespaceFinder._path_hook for hook in sys.path_hooks):
571
# PathEntryFinder is needed to create NamespaceSpec without private APIS
572
sys.path_hooks.append(_EditableNamespaceFinder._path_hook)
0 commit comments