Florian Maas
Florian Maas
I think the best way to move forward is to simply create separate issues for the following topics: > bad for wide table DataFrame comparisons doesn't handle some column types...
@maresb ping ;) updated the PR, it seems `typing_extensions` is now also no longer used and can be removed as a dependency. Don't feel pressured to review though, if you...
Thanks a bunch for the feedback! 1. I think this is a great suggestion, will work on implementing this. I was aware of this problem, but I never thought of...
@baggiponte thanks for raising the issue and the example repository. > I am afraid I do not understand why the error is raised when I pass src/deptry_test. The reason the...
Oh, and maybe to clarify; the reason it is marked as a transitive dependency is as follows: A transitive dependency is identified by (1) a package being available in the...
Added a warning for now: https://github.com/fpgmaas/deptry/pull/93
No, it's definitely possible to scan a project with pyproject.toml, poetry.lock and .venv. when added to the project with `poetry add --dev deptry`. But it will not work to install...
On [Reddit](https://www.reddit.com/r/Python/comments/xc64i7/comment/io4yjcr/?utm_source=share&utm_medium=web2x&context=3), someone offered this as a potential starting point for adding the functionality; https://stackoverflow.com/a/14792407 Not sure if we should add this kind of solution to the codebase though.
@mkniewallner suggested using [`site.getsitepackages()`](https://docs.python.org/3/library/site.html#site.getsitepackages), which contains all installed modules and should be available when the venv is active. A good source of inspiration for that may be `mypy` which has...
Tried this out, but also unsuccessful. `site.getsitepackages()` does not seem to return the virtual environment's `site-packages` directory. To reproduce: - add `import site` and `print(site.getsitepackages())` anywhere in `cli.py`. - install...