Breaking Changes
Previously, `deptry` always searched for a `pyproject.toml` file in the root directory passed as a positional argument to the `deptry` command. Since this is not in line with what most other tools in the ecosystem do, this is changed in release `0.7.0`.
In previous releases, when running:
shell
deptry src
`deptry` would search for both a `pyproject.toml` and for Python files to scan in the `src` directory.
Since this release, when running:
shell
deptry src
`deptry` will search for `pyproject.toml` in the location it is run from, and for Python files to scan in the `src` directory.
The downside of the changes outlined above, is that this could break some projects that did explicitly want to find `pyproject.toml` in a directory other than the positional argument specified as `root`. For this purpose, release `0.7.0` adds a `--config` argument that can be used to explicitly pass the location of `pyproject.toml`.
Features
* Separate `pyproject.toml` location from `root` argument ([244](https://github.com/fpgmaas/deptry/pull/244))
* Expose and handle `--config` argument ([245](https://github.com/fpgmaas/deptry/pull/245))
Miscellaneous
* Only load local modules once by ([242](https://github.com/fpgmaas/deptry/pull/242))
* More efficient Python files retrieval ([243](https://github.com/fpgmaas/deptry/pull/243))
Full Changelog
[0.6.6...0.7.0](https://github.com/fpgmaas/deptry/compare/0.6.6...0.7.0)