Add swift and uwsgi to py35 whitelist

Really close to getting swift and keystone under uwsgi working, so
let's white list them. Won't affect any existing jobs, so we should
be good.

Change-Id: I51d56d16a5b175bd45dee09edc0b2748d72a5d06
This commit is contained in:
Davanum Srinivas 2017-01-03 08:52:25 -05:00
parent afa8a00c14
commit 0c0d848b8c

View File

@ -149,7 +149,9 @@ function pip_install {
# support for python3 in progress, but don't claim support
# in their classifier
echo "Check python version for : $package_dir"
if [[ ${package_dir##*/} == "nova" || ${package_dir##*/} == "glance" || ${package_dir##*/} == "cinder" ]]; then
if [[ ${package_dir##*/} == "nova" || ${package_dir##*/} == "glance" || \
${package_dir##*/} == "cinder" || ${package_dir##*/} == "swift" || \
${package_dir##*/} == "uwsgi" ]]; then
echo "Using $PYTHON3_VERSION version to install $package_dir"
sudo_pip="$sudo_pip LC_ALL=en_US.UTF-8"
cmd_pip=$(get_pip_command $PYTHON3_VERSION)