A Python tool to enforce dependencies, using modular architecture π Open source π Installable via pip π§ Able to be adopted incrementally - β‘ Implemented with no runtime impact βΎοΈ Interoperable with your existing systems π¦ Written in rust
The issue was that within get_project_imports, the exclusion check was using a path relative to the project root. Since we already pass absolute source roots, and exclude patterns are made absolute as well, we should just drop this relative path calculation entirely.
Fixes #261
The issue was that within
get_project_imports
, the exclusion check was using a path relative to the project root. Since we already pass absolute source roots, and exclude patterns are made absolute as well, we should just drop this relative path calculation entirely.