You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Python Packaging Guide specifies what characters can be used in the name field in setup.py. For some illegal characters (e.g. spaces), setuptools does not throw an error, but replaces them with dashes during installation.
The analyzer uses pydep, which hooks setup() and captures it's keyword arguments verbatim. Therefore it fails when searching for the original name in the output of pipdeptree.
The text was updated successfully, but these errors were encountered:
The Python Packaging Guide specifies what characters can be used in the
name
field in setup.py. For some illegal characters (e.g. spaces), setuptools does not throw an error, but replaces them with dashes during installation.The analyzer uses
pydep
, which hookssetup()
and captures it's keyword arguments verbatim. Therefore it fails when searching for the original name in the output ofpipdeptree
.The text was updated successfully, but these errors were encountered: