Skip to content

Commit

Permalink
Fix dev wheel fashion to fallback on PyPI as well.
Browse files Browse the repository at this point in the history
Should have been part of galaxyproject#4674.
  • Loading branch information
jmchilton committed Oct 30, 2017
1 parent 719947c commit d3d0904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/common_startup.sh
Expand Up @@ -146,5 +146,5 @@ fi

if [ $FETCH_WHEELS -eq 1 -a $DEV_WHEELS -eq 1 ]; then
dev_requirements='./lib/galaxy/dependencies/dev-requirements.txt'
[ -f $dev_requirements ] && pip install -r $dev_requirements --index-url "${GALAXY_WHEELS_INDEX_URL}"
[ -f $dev_requirements ] && pip install -r $dev_requirements --index-url "${GALAXY_WHEELS_INDEX_URL}" --extra-index-url https://pypi.python.org/pypi
fi

0 comments on commit d3d0904

Please sign in to comment.