File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 76
76
conda activate "${CONDA_ENV}"
77
77
# Debug
78
78
which pip
79
- PYTHON_EXECUTABLE=python bash ./install_executorch.sh --editable-mode --pybind xnnpack --use-pt-pinned-commit
79
+ PYTHON_EXECUTABLE=python bash ./install_executorch.sh --editable --pybind xnnpack --use-pt-pinned-commit
80
80
# Try to import extension library
81
81
python -c "from executorch.extension.llm.custom_ops import custom_ops"
82
82
Original file line number Diff line number Diff line change 57
57
# Debug
58
58
which pip
59
59
bash .ci/scripts/setup-conda.sh
60
- PYTHON_EXECUTABLE=python ${CONDA_RUN} bash ./install_executorch.sh --editable-mode --pybind xnnpack --use-pt-pinned-commit
60
+ PYTHON_EXECUTABLE=python ${CONDA_RUN} bash ./install_executorch.sh --editable --pybind xnnpack --use-pt-pinned-commit
61
61
# Try to import extension library
62
62
python -c "from executorch.extension.llm.custom_ops import custom_ops"
63
63
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ def clean():
65
65
"prelude" : "BUCK" ,
66
66
"pthreadpool" : "CMakeLists.txt" ,
67
67
"pybind11" : "CMakeLists.txt" ,
68
+ "shim" : "BUCK" ,
68
69
"XNNPACK" : "CMakeLists.txt" ,
69
70
}
70
71
@@ -234,7 +235,9 @@ def main(args):
234
235
"-m" ,
235
236
"pip" ,
236
237
"install" ,
237
- "-e" if args .editable_mode else "" ,
238
+ ]
239
+ + (["--editable" ] if args .editable else [])
240
+ + [
238
241
"." ,
239
242
"--no-build-isolation" ,
240
243
"-v" ,
You can’t perform that action at this time.
0 commit comments