Bjorn

Results 157 comments of Bjorn

Looks like your analysis is correct (I'm still on vacation, so I haven't investigated why there isn't a problem on windows...). The native modulefinder calls `importlib._bootstrap_external._classify_pyc(data, fqname, {})`, but that...

v1.12.17 should have fixed .pyc header parsing code.

Hi @Dholguin-Programmer , and thank you for your interest in pydeps. If I add the missing (empty) `__init__.py` files to your example: ``` c:\srv\tmp\pydeps181> tree . . `-- root |--...

From experience it is usually better to let pydeps have at the entire tree and exclude branches using the `-x` flag. The ValueError is probably coming from python's modulefinder (or...

Hi @happyhebaby ! I'm on Easter vacation right now so I don't have much bandwidth (physically and mentally ;-) ) I see the files have different names, `_pytest._io` and `src._pytest._io`,...

``` >>> from pydeps.pydeps import pydeps >>> from pydeps import cli >>> pydeps(**cli.parse_args(['--show-deps', '--no-output', '--include-missing', '-LERROR', '.'])) ``` (it might be possible to set `fname="."` and omit the last `.`...

An easier to use, and more clearly defined and documented api would probably be a good idea...

The `--output` flag determines the name of the final svg file. The dependency graph is always printed to stdout (https://github.com/thebjorn/pydeps/blob/master/pydeps/pydeps.py#L36) There should probably be a way to override this.

Check out v1.11.2 available on PyPI.

mkproject should probably forward flags it doesn't handle to mkvirtualenv (which it calls). I think this is a bug.