From ab177452060c095534016daa6c654a4896016a6e Mon Sep 17 00:00:00 2001 From: Julia Signell Date: Thu, 25 Apr 2019 09:57:08 -0400 Subject: [PATCH] Use python setup.py rather than editable pip `pip install -e . --no-deps` started breaking with pypa/pip#6370 as seen in https://travis-ci.org/pyviz/panel/jobs/524005537#L1438 --- pyctdev/_conda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyctdev/_conda.py b/pyctdev/_conda.py index e6a0ffd..8c25a5a 100644 --- a/pyctdev/_conda.py +++ b/pyctdev/_conda.py @@ -65,11 +65,11 @@ # TODO: not sure what conda-using developers do/prefer... # pip develop and don't install missing deps -python_develop = "pip install --no-deps -e ." +# python_develop = "pip install --no-deps -e ." # pip develop and pip install missing deps # python_develop = "pip install -e ." # setuptools develop and don't install missing deps -# python_develop = "python setup.py develop --no-deps" +python_develop = "python setup.py develop --no-deps" # setuptools develop and easy_install missing deps: # python_develop = "python setup.py develop"