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
When running pipdeptree --graph-output png > ./test.png with the latest version (2.10.0)
We get the following error: AttributeError: 'Namespace' object has no attribute 'graph_output'
has caused the 'graph_output' field to not be set correctly as it appears its only getting assigned to the 'output_format' value. So not sure what the check at
Current work around:
Currently pinning the version of pipdeptree back to 2.9.6 works fine for my use-case pip install pipdeptree==2.9.6. Doesn't look like 2.10.0 actually introduced any massive new functionality so hopefully this workaround will be fine for most people.
The text was updated successfully, but these errors were encountered:
When running
pipdeptree --graph-output png > ./test.png
with the latest version (2.10.0)We get the following error: AttributeError: 'Namespace' object has no attribute 'graph_output'
Full traceback:
Suspect something to do with
pipdeptree/src/pipdeptree/_cli.py
Line 129 in e861826
pipdeptree/src/pipdeptree/_render/__init__.py
Line 24 in e861826
Current work around:
Currently pinning the version of pipdeptree back to 2.9.6 works fine for my use-case
pip install pipdeptree==2.9.6
. Doesn't look like 2.10.0 actually introduced any massive new functionality so hopefully this workaround will be fine for most people.The text was updated successfully, but these errors were encountered: