Skip to content

Commit

Permalink
Use python setup.py rather than editable pip
Browse files Browse the repository at this point in the history
`pip install -e . --no-deps` started breaking with pypa/pip#6370 as seen in https://travis-ci.org/pyviz/panel/jobs/524005537#L1438
  • Loading branch information
jsignell authored Apr 25, 2019
1 parent 6320402 commit ab17745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyctdev/_conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit ab17745

Please sign in to comment.