Skip to content

Commit

Permalink
feat: upgrade python packages when deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasts committed Aug 2, 2017
1 parent a615b69 commit 294a981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/deploy
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ pyenv global $APP_VENV

echo_debug "*** $0: About to do pip install (pwd: $(pwd))"
if [ -f "${CURRENT_DIR}/requirements.txt" ]; then
pip install -r ./requirements.txt
pip install --upgrade -r ./requirements.txt
elif [ -f "${CURRENT_DIR}/setup.py" ]; then
pip install -e .
pip install --upgrade -e .
fi
popd

0 comments on commit 294a981

Please sign in to comment.