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
Using pydeps version 1.11.2, the following works perfectly:
$ pydeps a/b.py
At pydeps a/b.py an image shows up, showing c→b.
New behavior / Error
Using pydeps version 1.12.1, we get the following error:
$ pydeps a/b.py
ERROR: [Errno 2] No such file or directory: 'a/b.py'
(Did you forget to include an __init__.py?)
The program exits with an error. Given the error message, it is worth noting that touch a/__init__.py does not make the error go away. Neither does touch __init__.py.
The text was updated successfully, but these errors were encountered:
* Branch to work on creating dependency for
all sub-directories (cf. issue #174).
I'm not sure if this is the way to do it though, it would probably be better
if py2dep could be called for each subdirectory and then the resulting
dep-graphs combined..? (although that will cause large parts of the source
tree to be re-parsed)
* Fix for #179
* update intersphinx format
Uh oh!
There was an error while loading. Please reload this page.
Setup
Old behavior / Expected behavior
Using
pydeps
version 1.11.2, the following works perfectly:At
pydeps a/b.py
an image shows up, showing c→b.New behavior / Error
Using
pydeps
version 1.12.1, we get the following error:The program exits with an error. Given the error message, it is worth noting that
touch a/__init__.py
does not make the error go away. Neither doestouch __init__.py
.The text was updated successfully, but these errors were encountered: