Skip to content

Cross-Package Development

๐Ÿ“ Detailed guide coming soon.

๐Ÿค– AI-Generated Content

This documentation was generated with AI assistance and is still being audited. Some, or potentially a lot, of this information may be inaccurate. Learn more.

Quick Example

# Edit in one package
cd provide-foundation/
# ... make changes to logger ...

# Test in another package (immediate!)
cd ../pyvider/
uv run pytest tests/test_logging.py

How It Works

Editable installs (pip install -e) make changes immediately available without reinstall.

See Also