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
feat: Add local package support to pixi.toml generation
When generating pixi.toml files, UniDep now automatically detects
local pip-installable packages (those with setup.py or pyproject.toml
with [build-system]) and adds them as editable dependencies.
This allows Pixi to install the local packages in development mode,
similar to 'pip install -e .'.
Changes:
- Use is_pip_installable() to detect local packages
- Add local packages as editable dependencies in pypi-dependencies
- For single packages: use path='.'
- For monorepos: use path='./feature_name' for each feature
- Add test to verify local package detection and inclusion
0 commit comments