A Python library for creating "editable wheels". Current version: 0.5. Supports building wheels that expose packages in a local directory on `sys.path` in "editable mode", allowing changes to the package source to be reflected in the package visible to Python without reinstalling. Release cadence: Regular updates with active development.
pip install editablesVerified import paths — ran on the pinned version, not inferred.
Quickstart guide to create and install an editable wheel using the editables library.
Double-check the path to your package before building the editable wheel.
Consult the `editables` library's changelog or documentation for the installed version to identify the correct way to access or replace `EditableWheel` functionality. Update your import statements and code to match the new API.
Review the installed version of the 'editables' library. If 'editables' version 2.0.0 or higher is installed, the 'EditableWheel' class has been removed. Update your code to use the new API, such as 'EditableProject' or other build functions provided by the 'editables' library, or downgrade 'editables' to a version less than 2.0.0 (e.g., `pip install "editables<2.0.0"`).