Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 5521b07

Browse files
authored
Also ask pip not to install build dependencies during editable install when using conda (#66)
1 parent 6c095ee commit 5521b07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyctdev/_conda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@
107107
CONDA_ROOT_EXE = os.environ.get('CONDA_EXE','conda') # TODO should at least warn if conda_exe not there; will be fixed as part of 0.7
108108

109109
# TODO: not sure what conda-using developers do/prefer...
110-
# pip develop and don't install missing deps
111-
python_develop = "pip install --no-deps -e ."
110+
# pip develop and don't install missing install deps or any build deps
111+
python_develop = "pip install --no-deps --no-build-isolation -e ."
112112
# pip develop and pip install missing deps
113113
# python_develop = "pip install -e ."
114114
# setuptools develop and don't install missing deps

0 commit comments

Comments
 (0)