Skip to content
Snippets Groups Projects
Commit ef6057ab authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Simplify pip setup

parent 591e33e3
No related branches found
No related tags found
1 merge request!42Staging
...@@ -40,14 +40,15 @@ fi ...@@ -40,14 +40,15 @@ fi
# Install this package's build dependencies # Install this package's build dependencies
PIPOPTS="--find-links ${WHEELS_REPOSITORY}" PIPOPTS="--find-links ${WHEELS_REPOSITORY}"
if [ ! -z "${WHEELS_SERVER}" ]; then if [ ! -z "${WHEELS_SERVER}" ]; then
PIPOPTS="${PIPOPTS} --trusted-host ${WHEELS_SERVER}" PIPOPTS="${PIPOPTS} --trusted-host ${WHEELS_SERVER}"
fi fi
# when building a tag, do not use beta wheels
# When building a tag, do not use beta wheels
PIPOPTS="${PIPOPTS} --use-wheel --no-index"
if [ -z "${CI_BUILD_TAG}" ]; then if [ -z "${CI_BUILD_TAG}" ]; then
PIPOPTS="${PIPOPTS} --pre --use-wheel --no-index" PIPOPTS="${PIPOPTS} --pre"
else
PIPOPTS="${PIPOPTS} --use-wheel --no-index"
fi fi
if [ -e requirements.txt ]; then if [ -e requirements.txt ]; then
run_cmd ${use_pip} install ${PIPOPTS} --requirement requirements.txt run_cmd ${use_pip} install ${PIPOPTS} --requirement requirements.txt
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment