From f0b545efc876d7fb358c7210508ed5ea7746d14e Mon Sep 17 00:00:00 2001 From: mohammed-saalim Date: Wed, 11 Feb 2026 12:27:59 -0600 Subject: [PATCH] Remove outdated editable mode warning from docs The warning about modules not being importable directly in editable mode is no longer relevant, as the issue has been resolved. Direct imports like 'from executorch.exir import CaptureConfig' now work correctly in editable mode. Fixes #11229 --- docs/source/using-executorch-building-from-source.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docs/source/using-executorch-building-from-source.md b/docs/source/using-executorch-building-from-source.md index 8e1772086de..7ca8cdd6352 100644 --- a/docs/source/using-executorch-building-from-source.md +++ b/docs/source/using-executorch-building-from-source.md @@ -100,15 +100,6 @@ python -m executorch.examples.xnnpack.aot_compiler --model_name="mv2" --delegate pip install -e . --no-build-isolation ``` -> **_WARNING:_** -> Some modules can't be imported directly in editable mode. This is a known [issue](https://github.com/pytorch/executorch/issues/9558) and we are actively working on a fix for this. To work around this: -> ```bash -> # This will fail -> python -c "from executorch.exir import CaptureConfig" -> # But this will succeed -> python -c "from executorch.exir.capture import CaptureConfig" -> ``` - > **_NOTE:_** Cleaning the build system > > When fetching a new version of the upstream repo (via `git fetch` or `git