Skip to content

Instantly share code, notes, and snippets.

@mrhillsman
Created November 23, 2016 22:30
Show Gist options
  • Save mrhillsman/20b905ffbfd701b29d90aa3f75c1f6e0 to your computer and use it in GitHub Desktop.
Save mrhillsman/20b905ffbfd701b29d90aa3f75c1f6e0 to your computer and use it in GitHub Desktop.
TASK: [repo_build | Run venv process script] **********************************
failed: [infra01_repo_container-6d540626] => {"changed": true, "cmd": "bash /opt/op-venv-script.sh", "delta": "0:00:45.542975", "end": "2016-11-23 22:23:13.470243", "rc": 99, "start": "2016-11-23 22:22:27.927268", "warnings": []}
stderr:
function venv_create {
VENV_PATH="$1"
VENV_FILE="$2"
# If the venv working directory already exists remove it
[[ -d "/tmp/${VENV_PATH}" ]] && rm -rf "/tmp/${VENV_PATH}"
# If the pip build directory already exists remove it
[[ -d "/tmp/${VENV_FILE}" ]] && rm -rf "/tmp/${VENV_FILE}"
# Create the virtualenv shell
/usr/local/bin/virtualenv --always-copy --extra-search-dir /var/www/repo/os-releases/13.3.9 --never-download "${VENV_PATH}"
# Create the pip build directory
mkdir -p "/tmp/${VENV_FILE}"
# Activate the python virtual environment for good measure
source "${VENV_PATH}/bin/activate"
# Run the pip install within the venv and specify a specific build directory which
# resolves pip locking issues when run in parallel.
${VENV_PATH}/bin/pip install --build "/tmp/${VENV_FILE}" --timeout 120 --find-links /var/www/repo/os-releases/13.3.9 --no-index --log /var/log/repo/repo_venv_builder.log $3
# Deactivate the venv for good measure
deactivate
# Find and remove all of the python pyc files
find "${VENV_PATH}" -type f -name '*.pyc' -delete
# Create the archive
tar czf "${VENV_FILE}.tgz" -C "${VENV_PATH}" .
# Create a checksum file for the archive
sha1sum "${VENV_FILE}.tgz" | awk '{print $1}' > "${VENV_FILE}.checksum"
# Remove the working directories
rm -rf "${VENV_PATH}"
rm -rf "/tmp/${VENV_FILE}"
}
# First operation is to sort and set the known os_* roles and create a unique dict.
# NOTE: this is a Jinja loop and will not be rendered within the script. For debugging
# purposes the group data will be rendered as a comment.
# venv to build os_heat
# * packages within the os_heat venv: ['heat', 'httplib2', 'keystonemiddleware', 'pycrypto', 'pymysql', 'python-ceilometerclient', 'python-cinderclient', 'python-glanceclient', 'python-heatclient', 'python-keystoneclient', 'python-memcached', 'python-neutronclient', 'python-novaclient', 'python-openstackclient', 'python-swiftclient', 'python-troveclient', 'virtualenv', 'virtualenv-tools']
# venv to build os_nova
# * packages within the os_nova venv: ['httplib2', 'keystonemiddleware', 'libvirt-python', 'nova', 'pycrypto', 'pymysql', 'python-ironicclient', 'python-keystoneclient', 'python-memcached', 'python-novaclient', 'virtualenv', 'virtualenv-tools', 'websockify']
# venv to build os_keystone
# * packages within the os_keystone venv: ['argparse', 'httplib2', 'keystone', 'keystonemiddleware', 'ldappool', 'lxml', 'oslo.log', 'oslo.middleware', 'pbr', 'pycrypto', 'pymysql', 'pysaml2', 'python-keystoneclient', 'python-ldap', 'python-memcached', 'python-openstackclient', 'repoze.lru', 'virtualenv', 'virtualenv-tools']
# venv to build os_rally
# * packages within the os_rally venv: ['pymysql', 'rally', 'setuptools', 'virtualenv', 'virtualenv-tools']
# venv to build os_ironic
# * packages within the os_ironic venv: ['httplib2', 'ironic', 'pymysql', 'python-ironicclient', 'python-keystoneclient', 'python-swiftclient', 'virtualenv', 'virtualenv-tools']
# venv to build os_swift
# * packages within the os_swift venv: ['ceilometermiddleware', 'dnspython', 'ecdsa', 'httplib2', 'keystonemiddleware', 'pycrypto', 'pyeclib', 'python-cinderclient', 'python-keystoneclient', 'python-memcached', 'python-swiftclient', 'swift', 'virtualenv', 'virtualenv-tools']
# venv to build os_neutron
# * packages within the os_neutron venv: ['cliff', 'configobj', 'httplib2', 'keystonemiddleware', 'neutron', 'neutron_fwaas', 'neutron_lbaas', 'neutron_vpnaas', 'pycrypto', 'pymysql', 'python-glanceclient', 'python-keystoneclient', 'python-memcached', 'python-neutronclient', 'python-novaclient', 'repoze.lru', 'virtualenv', 'virtualenv-tools']
# venv to build os_sahara
# * packages within the os_sahara venv: ['httplib2', 'keystonemiddleware', 'pycrypto', 'pymysql', 'python-keystoneclient', 'python-memcached', 'python-saharaclient', 'sahara', 'virtualenv', 'virtualenv-tools', 'warlock']
# venv to build os_magnum
# * packages within the os_magnum venv: ['httplib2', 'magnum', 'mysql-python', 'pymysql', 'python-glanceclient', 'python-keystoneclient', 'python-memcached', 'pyyaml', 'virtualenv', 'virtualenv-tools']
# venv to build os_glance
# * packages within the os_glance venv: ['glance', 'httplib2', 'keystonemiddleware', 'os-brick', 'pycrypto', 'pymysql', 'python-cinderclient', 'python-glanceclient', 'python-keystoneclient', 'python-memcached', 'python-swiftclient', 'virtualenv', 'virtualenv-tools', 'warlock']
# venv to build os_aodh
# * packages within the os_aodh venv: ['aodh', 'ceilometermiddleware', 'httplib2', 'pycrypto', 'pymongo', 'python-ceilometerclient', 'python-keystoneclient', 'python-memcached', 'virtualenv', 'virtualenv-tools', 'warlock']
# venv to build os_cinder
# * packages within the os_cinder venv: ['cinder', 'ecdsa', 'httplib2', 'keystonemiddleware', 'pycrypto', 'pymysql', 'python-cinderclient', 'python-keystoneclient', 'python-memcached', 'virtualenv', 'virtualenv-tools']
# venv to build os_tempest
# * packages within the os_tempest venv: ['junitxml', 'nose', 'python-ceilometerclient', 'python-cinderclient', 'python-glanceclient', 'python-heatclient', 'python-keystoneclient', 'python-memcached', 'python-neutronclient', 'python-novaclient', 'python-openstackclient', 'python-subunit', 'python-swiftclient', 'tempest', 'virtualenv', 'virtualenv-tools']
# venv to build os_horizon
# * packages within the os_horizon venv: ['django-appconf', 'django-openstack-auth', 'greenlet', 'horizon', 'httplib2', 'keystonemiddleware', 'mysql-python', 'neutron-lbaas-dashboard', 'oslo.config', 'ply', 'pycrypto', 'pymysql', 'python-keystoneclient', 'python-memcached', 'virtualenv', 'virtualenv-tools']
# venv to build os_ceilometer
# * packages within the os_ceilometer venv: ['ceilometer', 'ceilometermiddleware', 'httplib2', 'libvirt-python', 'pycrypto', 'pymongo', 'pymysql', 'python-ceilometerclient', 'python-keystoneclient', 'python-memcached', 'tooz', 'virtualenv', 'virtualenv-tools', 'warlock']
PID=()
# Run the venv create. This will loop over all of the os_group role packages and create a python virtual env.
# Venv creation is done parallel at a count of the known "ansible_processor_count" or using a default of 5.
# This loop will enter the venv build directory and craete tagged venvs in a distrobution directory
# If the venv archive already exists the creation process will be skipped
pushd "/var/www/repo/venvs/13.3.9/ubuntu"
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/heat"
ROLE_VENV_FILE="heat-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "heat httplib2 keystonemiddleware pycrypto pymysql python-ceilometerclient python-cinderclient python-glanceclient python-heatclient python-keystoneclient python-memcached python-neutronclient python-novaclient python-openstackclient python-swiftclient python-troveclient virtualenv virtualenv-tools" &
pid[1]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/neutron"
ROLE_VENV_FILE="neutron-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "cliff configobj httplib2 keystonemiddleware neutron neutron_fwaas neutron_lbaas neutron_vpnaas pycrypto pymysql python-glanceclient python-keystoneclient python-memcached python-neutronclient python-novaclient repoze.lru virtualenv virtualenv-tools" &
pid[2]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/keystone"
ROLE_VENV_FILE="keystone-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "argparse httplib2 keystone keystonemiddleware ldappool lxml oslo.log oslo.middleware pbr pycrypto pymysql pysaml2 python-keystoneclient python-ldap python-memcached python-openstackclient repoze.lru virtualenv virtualenv-tools" &
pid[3]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/rally"
ROLE_VENV_FILE="rally-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "pymysql rally setuptools virtualenv virtualenv-tools" &
pid[4]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/cinder"
ROLE_VENV_FILE="cinder-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "cinder ecdsa httplib2 keystonemiddleware pycrypto pymysql python-cinderclient python-keystoneclient python-memcached virtualenv virtualenv-tools" &
pid[5]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/ironic"
ROLE_VENV_FILE="ironic-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "httplib2 ironic pymysql python-ironicclient python-keystoneclient python-swiftclient virtualenv virtualenv-tools" &
pid[6]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/swift"
ROLE_VENV_FILE="swift-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "ceilometermiddleware dnspython ecdsa httplib2 keystonemiddleware pycrypto pyeclib python-cinderclient python-keystoneclient python-memcached python-swiftclient swift virtualenv virtualenv-tools" &
pid[7]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/nova"
ROLE_VENV_FILE="nova-13.3.9"
if [ ! -f "${ROLE_VENV_FILE}.tgz" ];then
venv_create "${ROLE_VENV_PATH}" "${ROLE_VENV_FILE}" "httplib2 keystonemiddleware libvirt-python nova pycrypto pymysql python-ironicclient python-keystoneclient python-memcached python-novaclient virtualenv virtualenv-tools websockify" &
pid[8]=$!
fi
unset ROLE_VENV_PATH
unset ROLE_VENV_FILE
for job_pid in ${!pid[@]}; do
wait ${pid[$job_pid]} || exit 99
done
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/rally"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
PS1="$PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/swift"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
PS1="$PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/ironic"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
PS1="$PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/neutron"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
PS1="$PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/keystone"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
PS1="$PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
PATH="$_OLD_VIRTUAL_PATH"
deactivate () {
export PATH
unset -f pydoc >/dev/null 2>&1
unset _OLD_VIRTUAL_PATH
fi
# reset old environment variables
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
PATH="$_OLD_VIRTUAL_PATH"
fi
export PATH
# This should detect bash and zsh, which have a hash command that must
unset _OLD_VIRTUAL_PATH
fi
# be called to get it to forget past commands. Without forgetting
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
hash -r 2>/dev/null
fi
fi
# This should detect bash and zsh, which have a hash command that must
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
# be called to get it to forget past commands. Without forgetting
PS1="$_OLD_VIRTUAL_PS1"
# past commands the $PATH changes we made may not be respected
export PS1
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
hash -r 2>/dev/null
fi
# Self destruct!
unset -f deactivate
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
fi
PS1="$_OLD_VIRTUAL_PS1"
}
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/nova"
export VIRTUAL_ENV
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/heat"
_OLD_VIRTUAL_PATH="$PATH"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
export PATH
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
unset PYTHONHOME
fi
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
PS1="$PS1"
else
_OLD_VIRTUAL_PS1="$PS1"
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
if [ "x" != x ] ; then
fi
PS1="$PS1"
export PS1
else
fi
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
unset -f pydoc >/dev/null 2>&1
# reset old environment variables
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then
PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "${1-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/tmp/openstack-venv-builder/venvs/cinder"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
if ! [ -z "${PYTHONHOME+_}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x" != x ] ; then
PS1="$PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1"
fi
export PS1
fi
basename "$VIRTUAL_ENV"
# Make sure to unalias pydoc if it's already there
alias pydoc 2>/dev/null >/dev/null && unalias pydoc
pydoc () {
python -m pydoc "$@"
}
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then
hash -r 2>/dev/null
fi
Could not find a version that satisfies the requirement python-ceilometerclient>=2.5.0 (from rally) (from versions: 2.4.0)
No matching distribution found for python-ceilometerclient>=2.5.0 (from rally)
stdout: /var/www/repo/venvs/13.3.9/ubuntu ~
New python executable in /tmp/openstack-venv-builder/venvs/rally/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/keystone/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/swift/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/cinder/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/neutron/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/ironic/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/nova/bin/python
Installing setuptools, pip, wheel...New python executable in /tmp/openstack-venv-builder/venvs/heat/bin/python
Installing setuptools, pip, wheel...done.
done.
done.
done.
done.
done.
done.
done.
Collecting pymysql
Collecting ceilometermiddleware
Collecting httplib2
Collecting cliff
Requirement already satisfied: argparse in /usr/lib/python2.7
Collecting rally
Collecting httplib2
Collecting httplib2
Collecting ironic
Collecting dnspython
Collecting configobj
Collecting heat
Collecting keystone
Collecting cinder
Requirement already satisfied: setuptools in /tmp/openstack-venv-builder/venvs/rally/lib/python2.7/site-packages
Collecting keystonemiddleware
Collecting ecdsa
Collecting httplib2
Collecting virtualenv
Collecting pymysql
Collecting httplib2
Collecting keystonemiddleware
Collecting libvirt-python
Collecting virtualenv-tools
Collecting python-ironicclient
Collecting keystonemiddleware
Collecting httplib2
Collecting keystonemiddleware
Collecting nova
Collecting neutron
Collecting python-ceilometerclient>=2.5.0 (from rally)
Collecting keystonemiddleware
Collecting python-keystoneclient
Collecting ldappool
Collecting pycrypto
Collecting ecdsa
Collecting lxml
Collecting pycrypto
Collecting python-swiftclient
Collecting pyeclib
Collecting neutron_fwaas
Collecting pymysql
Collecting virtualenv
Collecting oslo.log
Collecting python-cinderclient
Collecting httplib2
Collecting pycrypto
Collecting neutron_lbaas
Collecting python-ceilometerclient
Collecting virtualenv-tools
Collecting oslo.middleware
Collecting python-keystoneclient
Collecting keystonemiddleware
Collecting python-cinderclient
Collecting retrying!=1.3.0,>=1.2.3 (from ironic)
Collecting neutron_vpnaas
Collecting pymysql
Collecting pbr
Collecting python-memcached
Collecting oslo.rootwrap>=2.0.0 (from ironic)
Collecting python-glanceclient
Collecting python-ironicclient
Collecting pycrypto
Collecting pycrypto
Collecting pycrypto
Collecting python-swiftclient
Collecting oslo.concurrency>=3.7.1 (from ironic)
Collecting python-heatclient
Collecting python-keystoneclient
Collecting swift
Collecting pymysql
Collecting pymysql
Collecting pymysql
Collecting psutil<2.0.0,>=1.1.1 (from ironic)
Collecting python-keystoneclient
Collecting python-memcached
Collecting pysaml2
Collecting python-cinderclient
Collecting python-glanceclient
Collecting virtualenv
Collecting oslo.db>=4.1.0 (from ironic)
Collecting python-novaclient
Collecting python-memcached
Collecting python-keystoneclient
Collecting python-keystoneclient
Collecting python-keystoneclient
Collecting virtualenv-tools
Collecting jsonschema!=2.5.0,<3.0.0,>=2.0.0 (from ironic)
Collecting python-neutronclient
Collecting virtualenv
Collecting oslo.utils>=3.5.0 (from ceilometermiddleware)
Collecting python-memcached
Collecting python-ldap
Collecting python-memcached
Collecting pytz>=2013.6 (from ironic)
Collecting virtualenv-tools
Collecting python-novaclient
Collecting Babel>=1.3 (from ceilometermiddleware)
Collecting virtualenv
Collecting python-neutronclient
Collecting python-memcached
Collecting websockify
Collecting stevedore>=1.5.0 (from ironic)
Collecting virtualenv-tools
Collecting python-openstackclient
Collecting python-openstackclient
Collecting python-novaclient
Collecting oslo.utils>=3.5.0 (from keystonemiddleware)
Collecting oslo.messaging>=4.0.0 (from ironic)
Collecting Babel!=2.3.0,!=2.3.1,!=2.3.2,!=2.3.3,>=1.3 (from cinder)
Collecting repoze.lru
Collecting python-swiftclient
Collecting six>=1.9.0 (from ceilometermiddleware)
Collecting repoze.lru
Collecting keystoneauth1>=2.1.0 (from keystonemiddleware)
Collecting python-glanceclient>=2.0.0 (from ironic)
Collecting python-troveclient
Collecting pycadf!=2.0.0,>=1.1.0 (from ceilometermiddleware)
Collecting virtualenv
Collecting virtualenv
Collecting positional>=1.0.1 (from keystonemiddleware)
Collecting oslo.service>=1.0.0 (from ironic)
Collecting retrying!=1.3.0,>=1.2.3 (from cinder)
Collecting oslo.config>=3.7.0 (from ceilometermiddleware)
Collecting virtualenv-tools
Collecting virtualenv
Collecting virtualenv-tools
Collecting oslo.serialization>=1.10.0 (from keystonemiddleware)
Collecting suds-jurko>=0.6 (from cinder)
Collecting jsonpatch>=1.1 (from ironic)
Collecting stevedore>=1.5.0 (from keystone)
Collecting oslo.messaging>=4.0.0 (from ceilometermiddleware)
Collecting stevedore>=1.5.0 (from cliff)
Collecting virtualenv-tools
Collecting six>=1.9.0 (from keystonemiddleware)
Collecting greenlet>=0.3.2 (from ironic)
Collecting oslo.concurrency>=3.7.1 (from keystone)
Collecting stevedore>=1.5.0 (from cinder)
Collecting cmd2>=0.6.7 (from cliff)
Collecting Babel!=2.3.0,!=2.3.1,!=2.3.2,!=2.3.3,>=1.3 (from heat)
Collecting pbr>=1.6 (from ceilometermiddleware)
Collecting oslo.i18n>=2.1.0 (from keystonemiddleware)
Collecting requests!=2.9.0,>=2.8.1 (from ironic)
Collecting oslo.concurrency>=3.7.1 (from cinder)
Collecting oslo.db>=4.1.0 (from keystone)
Collecting pyparsing>=2.0.1 (from cliff)
Collecting oslo.context>=0.2.0 (from ceilometermiddleware)
Collecting WebOb>=1.2.3 (from keystonemiddleware)
Collecting pysendfile>=2.0.0 (from ironic)
Collecting six>=1.9.0 (from cliff)
Collecting oslo.db>=4.1.0 (from cinder)
Collecting keystoneauth1>=2.1.0 (from keystonemiddleware)
Collecting cryptography!=1.3.0,>=1.0 (from keystone)
Collecting retrying!=1.3.0,>=1.2.3 (from heat)
Collecting pycadf!=2.0.0,>=1.1.0 (from keystonemiddleware)
Collecting unicodecsv>=0.8.0 (from cliff)
Collecting ironic-lib>=1.1.0 (from ironic)
Collecting oauth2client>=1.5.0 (from cinder)
Collecting positional>=1.0.1 (from keystonemiddleware)
Collecting stevedore>=1.5.0 (from heat)
Collecting jsonschema!=2.5.0,<3.0.0,>=2.0.0 (from keystone)
Collecting oslo.config>=3.7.0 (from keystonemiddleware)
Collecting PyYAML>=3.1.0 (from cliff)
Collecting six>=1.9.0 (from ironic)
Collecting oslo.serialization>=1.10.0 (from keystonemiddleware)
Collecting tooz>=1.28.0 (from cinder)
Collecting oslo.concurrency>=3.7.1 (from heat)
Collecting sqlalchemy-migrate>=0.9.6 (from keystone)
Collecting pbr>=1.6 (from keystonemiddleware)
Collecting PrettyTable<0.8,>=0.7 (from cliff)
Collecting oslo.policy>=0.5.0 (from ironic)
Collecting oslo.i18n>=2.1.0 (from keystonemiddleware)
Collecting pytz>=2013.6 (from cinder)
Collecting oslo.db>=4.1.0 (from heat)
Collecting requests!=2.9.0,>=2.8.1 (from keystonemiddleware)
Collecting Paste (from keystone)
Collecting pbr>=1.6 (from cliff)
Collecting oslo.i18n>=2.1.0 (from ironic)
Collecting WebOb>=1.2.3 (from keystonemiddleware)
Collecting oslo.messaging>=4.0.0 (from keystone)
Collecting oslo.context>=0.2.0 (from keystonemiddleware)
Collecting six>=1.9.0 (from heat)
Collecting sqlalchemy-migrate>=0.9.6 (from cinder)
Collecting oslo.utils>=3.5.0 (from keystonemiddleware)
Collecting futurist>=0.11.0 (from ironic)
Collecting requests!=2.9.0,>=2.8.1 (from keystonemiddleware)
Collecting Babel!=2.3.0,!=2.3.1,!=2.3.2,!=2.3.3,>=1.3 (from nova)
Collecting cryptography!=1.3.0,>=1.0 (from heat)
Collecting Paste (from cinder)
Collecting keystoneauth1>=2.1.0 (from keystonemiddleware)
Collecting oslo.service>=1.0.0 (from keystone)
Collecting SQLAlchemy<1.1.0,>=1.0.10 (from ironic)
Collecting simplejson>=2.2.0 (from python-cinderclient)
Collecting python-senlinclient>=0.3.0 (from heat)
Collecting oslo.messaging>=4.0.0 (from cinder)
Collecting positional>=1.0.1 (from keystonemiddleware)
Collecting greenlet>=0.3.2 (from keystone)
Collecting oslo.config>=3.7.0 (from ironic)
Collecting PrettyTable<0.8,>=0.7 (from python-cinderclient)
Collecting oslo.serialization>=1.10.0 (from keystonemiddleware)
Collecting pytz>=2013.6 (from heat)
Collecting stevedore>=1.5.0 (from nova)
Collecting six>=1.9.0 (from keystone)
Collecting lxml>=2.3 (from cinder)
Collecting iso8601>=0.1.9 (from python-keystoneclient)
Collecting eventlet!=0.18.3,>=0.18.2 (from ironic)
Collecting oslo.i18n>=2.1.0 (from keystonemiddleware)
Collecting oslo.i18n>=2.1.0 (from keystone)
Collecting oslo.concurrency>=3.7.1 (from nova)
Collecting oslo.messaging>=4.0.0 (from heat)
Collecting stevedore>=1.5.0 (from python-keystoneclient)
Collecting pbr>=1.6 (from ironic)
Collecting WebOb>=1.2.3 (from keystonemiddleware)
Collecting python-glanceclient>=2.0.0 (from cinder)
Collecting oslo.policy>=0.5.0 (from keystone)
Collecting psutil<2.0.0,>=1.1.1 (from nova)
Collecting debtcollector>=1.2.0 (from python-keystoneclient)
Collecting pecan>=1.0.0 (from ironic)
Collecting lxml>=2.3 (from heat)
Collecting pycadf!=2.0.0,>=1.1.0 (from keystonemiddleware)
Collecting oslo.service>=1.0.0 (from cinder)
Collecting SQLAlchemy<1.1.0,>=1.0.10 (from keystone)
Collecting oslo.db>=4.1.0 (from nova)
Collecting futures>=2.1.3 (from python-swiftclient)
Collecting oslo.versionedobjects>=1.5.0 (from ironic)
Collecting oslo.config>=3.7.0 (from keystonemiddleware)
Collecting PyYAML>=3.1.0 (from heat)
Collecting decorator>=3.4.0 (from cinder)
Collecting dogpile.cache>=0.5.7 (from keystone)
Collecting netifaces!=0.10.0,!=0.10.1,>=0.5 (from swift)
Collecting cryptography!=1.3.0,>=1.0 (from nova)
Collecting paramiko>=1.16.0 (from ironic)
Collecting requests!=2.9.0,>=2.8.1 (from keystonemiddleware)
Collecting greenlet>=0.3.2 (from heat)
Collecting oslo.vmware>=1.16.0 (from cinder)
Collecting eventlet!=0.18.3,>=0.18.2 (from keystone)
Collecting pastedeploy>=1.3.3 (from swift)
Collecting oslo.serialization>=1.10.0 (from ironic)
Collecting jsonschema!=2.5.0,<3.0.0,>=2.0.0 (from nova)
Collecting requests!=2.9.0,>=2.8.1 (from heat)
Collecting oslo.context>=0.2.0 (from keystonemiddleware)
Collecting oslo.config>=3.7.0 (from keystone)
Collecting greenlet>=0.3.2 (from cinder)
Collecting xattr>=0.4 (from swift)
Collecting automaton>=0.5.0 (from ironic)
Collecting sqlalchemy-migrate>=0.9.6 (from nova)
Collecting python-designateclient>=1.5.0 (from heat)
Collecting requests!=2.9.0,>=2.8.1 (from cinder)
Collecting retrying!=1.3.0,>=1.2.3 (from neutron)
Collecting oslo.middleware>=3.0.0 (from ironic)
Collecting Paste (from nova)
Collecting oslo.serialization>=1.10.0 (from keystone)
Collecting python-zaqarclient>=0.3.0 (from heat)
Collecting oslo.concurrency>=3.7.1 (from neutron)
Collecting greenlet>=0.3.1 (from swift)
Collecting iso8601>=0.1.9 (from cinder)
Collecting PasteDeploy>=1.5.0 (from keystone)
Collecting python-neutronclient!=4.1.0,>=2.6.0 (from nova)
Collecting WebOb>=1.2.3 (from ironic)
Collecting oslo.serialization>=1.10.0 (from heat)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from cinder)
Collecting eventlet>=0.17.4 (from swift)
Collecting oslo.db>=4.1.0 (from neutron)
Collecting Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7" (from keystone)
Collecting python-neutronclient!=4.1.0,>=2.6.0 (from ironic)
Collecting oslo.messaging>=4.0.0 (from nova)
Collecting oslo.rootwrap>=2.0.0 (from cinder)
Collecting python-mistralclient>=1.0.0 (from heat)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=3.5.0->ceilometermiddleware)
Collecting Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7" (from neutron)
Collecting WebOb>=1.2.3 (from keystone)
Collecting Jinja2>=2.8 (from ironic)
Collecting six>=1.9.0 (from cinder)
Collecting lxml>=2.3 (from nova)
Collecting pytz>=2013.6 (from oslo.utils>=3.5.0->ceilometermiddleware)
Collecting oslo.i18n>=2.1.0 (from heat)
Collecting Paste (from neutron)
Collecting pycadf!=2.0.0,>=1.1.0 (from keystone)
Collecting oslo.utils>=3.5.0 (from ironic)
Collecting oslo.i18n>=2.1.0 (from cinder)
Collecting oslo.policy>=0.5.0 (from heat)
Collecting oslo.messaging>=4.0.0 (from neutron)
Collecting monotonic>=0.6 (from oslo.utils>=3.5.0->ceilometermiddleware)
Collecting msgpack-python>=0.4.0 (from keystone)
Collecting python-glanceclient>=2.0.0 (from nova)
Collecting oslo.policy>=0.5.0 (from cinder)
Collecting websockify>=0.6.1 (from ironic)
Collecting SQLAlchemy<1.1.0,>=1.0.10 (from heat)
Collecting netaddr!=0.7.16,>=0.7.12 (from oslo.utils>=3.5.0->ceilometermiddleware)
Collecting oslo.utils>=3.5.0 (from keystone)
Collecting oslo.service>=1.0.0 (from neutron)
Collecting oslo.service>=1.0.0 (from nova)
Collecting oslo.log>=1.14.0 (from ironic)
Collecting SQLAlchemy<1.1.0,>=1.0.10 (from cinder)
Collecting oauthlib>=0.6 (from keystone)
Collecting oslo.config>=3.7.0 (from heat)
Collecting greenlet>=0.3.2 (from neutron)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting decorator>=3.4.0 (from nova)
Collecting WSME>=0.8 (from ironic)
Collecting oslo.config>=3.7.0 (from cinder)
Collecting python-designateclient>=1.5.0 (from neutron)
Collecting eventlet!=0.18.3,>=0.18.2 (from heat)
Collecting retrying!=1.3.0,>=1.2.3 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting oslo.context>=0.2.0 (from keystone)
Collecting greenlet>=0.3.2 (from nova)
Collecting keystonemiddleware!=4.1.0,>=4.0.0 (from ironic)
Collecting rtslib-fb>=2.1.41 (from cinder)
Collecting passlib>=1.6 (from keystone)
Collecting oslo.service>=1.0.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting oslo.rootwrap>=2.0.0 (from neutron)
Collecting pbr>=1.6 (from heat)
Collecting iso8601>=0.1.9 (from nova)
Collecting netaddr!=0.7.16,>=0.7.12 (from ironic)
Collecting eventlet!=0.18.3,>=0.18.2 (from cinder)
Collecting oslo.policy>=0.5.0 (from neutron)
Requirement already satisfied: setuptools!=24.0.0,>=16.0 in /tmp/openstack-venv-builder/venvs/nova/lib/python2.7/site-packages (from nova)
Collecting oslo.cache>=1.5.0 (from keystone)
Collecting oslo.versionedobjects>=1.5.0 (from heat)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting oslo.rootwrap>=2.0.0 (from nova)
Collecting oslo.context>=0.2.0 (from ironic)
Collecting pbr>=1.6 (from cinder)
Collecting SQLAlchemy<1.1.0,>=1.0.10 (from neutron)
Collecting keystoneauth1>=2.1.0 (from keystonemiddleware)
Collecting PyYAML>=3.1.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting python-barbicanclient>=3.3.0 (from heat)
Collecting oslo.policy>=0.5.0 (from nova)
Collecting alembic>=0.8.0 (from ironic)
Collecting oslo.versionedobjects>=1.5.0 (from cinder)
Collecting eventlet!=0.18.3,>=0.18.2 (from neutron)
Collecting positional>=1.0.1 (from keystonemiddleware)
Collecting futurist>=0.11.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting SQLAlchemy<1.1.0,>=1.0.10 (from nova)
Collecting debtcollector>=1.2.0 (from heat)
Collecting keystoneauth1>=2.1.0 (from python-ironicclient)
Collecting paramiko>=1.16.0 (from cinder)
Collecting pecan>=1.0.0 (from neutron)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting eventlet!=0.18.3,>=0.18.2 (from nova)
Collecting python-barbicanclient>=3.3.0 (from cinder)
Collecting appdirs>=1.3.0 (from python-ironicclient)
Collecting requests!=2.9.0,>=2.8.1 (from keystonemiddleware)
Collecting neutron-lib>=0.0.1 (from neutron)
Collecting oslo.middleware>=3.0.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting PasteDeploy>=1.5.0 (from heat)
Collecting oslo.versionedobjects>=1.5.0 (from nova)
Collecting oslo.serialization>=1.10.0 (from cinder)
Collecting python-openstackclient>=2.1.0 (from python-ironicclient)
Collecting debtcollector>=1.2.0 (from neutron)
Collecting python-dateutil>=2.4.2 (from oslo.log)
Collecting oslo.middleware>=3.0.0 (from heat)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting paramiko>=1.16.0 (from nova)
Collecting PasteDeploy>=1.5.0 (from cinder)
Collecting PasteDeploy>=1.5.0 (from neutron)
Collecting debtcollector>=1.2.0 (from oslo.log)
Collecting cliff!=1.16.0,!=1.17.0,>=1.15.0 (from python-ironicclient)
Collecting Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7" (from heat)
Collecting oslo.log>=1.14.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting PasteDeploy>=1.5.0 (from nova)
Collecting oslo.middleware>=3.0.0 (from cinder)
Collecting oslo.middleware>=3.0.0 (from neutron)
Collecting Babel>=1.3 (from oslo.log)
Collecting PrettyTable<0.8,>=0.7 (from python-ironicclient)
Collecting WebOb>=1.2.3 (from heat)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting python-cinderclient>=1.3.1 (from nova)
Collecting Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7" (from cinder)
Collecting ryu>=3.30 (from neutron)
Collecting dogpile.cache>=0.5.7 (from python-ironicclient)
Collecting msgpack-python>=0.4.0 (from oslo.serialization>=1.10.0->keystonemiddleware)
Collecting python-manilaclient>=1.3.0 (from heat)
Collecting google-api-python-client>=1.4.2 (from cinder)
Collecting oslo.middleware>=3.0.0 (from nova)
Collecting iso8601>=0.1.9 (from python-keystoneclient)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->python-keystoneclient)
Collecting osprofiler>=1.1.0 (from heat)
Collecting os-brick!=1.4.0,>=1.0.0 (from cinder)
Collecting Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7" (from nova)
Collecting positional>=1.0.1 (from python-keystoneclient)
Collecting Jinja2>=2.8 (from oslo.middleware)
Collecting cffi>=0.4 (from xattr>=0.4->swift)
Collecting Jinja2>=2.8 (from neutron)
Collecting oslo.utils>=3.5.0 (from heat)
Collecting debtcollector>=1.2.0 (from python-keystoneclient)
Collecting os-brick!=1.4.0,>=1.0.0 (from nova)
Collecting os-win>=0.2.3 (from cinder)
Collecting repoze.who (from pysaml2)
Collecting Routes!=2.0,!=2.1,>=1.12.3; python_version == "2.7" (from oslo.service>=1.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting netifaces>=0.10.4 (from neutron)
Collecting python-magnumclient>=0.2.1 (from heat)
Collecting futures>=2.1.3 (from python-swiftclient)
Collecting os-win>=0.2.3 (from nova)
Collecting taskflow>=1.26.0 (from cinder)
Collecting oslo.concurrency>=3.5.0 (from oslo.service>=1.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting oslo.log>=1.14.0 (from neutron)
Collecting pyOpenSSL (from pysaml2)
Collecting python-saharaclient>=0.13.0 (from heat)
Collecting Babel!=2.3.0,!=2.3.1,!=2.3.2,!=2.3.3,>=1.3 (from oslo.concurrency>=3.7.1->ironic)
Collecting Jinja2>=2.8 (from nova)
Collecting decorator (from pysaml2)
Collecting oslo.reports>=0.6.0 (from neutron)
Collecting Paste (from oslo.service>=1.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting croniter>=0.3.4 (from heat)
Collecting netifaces>=0.10.4 (from nova)
Collecting zope.interface (from pysaml2)
Collecting simplejson>=2.2.0 (from cinder)
Collecting ovs>=2.4.0; python_version == "2.7" (from neutron)
Collecting oslo.log>=1.14.0 (from heat)
Collecting boto>=2.32.1 (from nova)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.7.1->ironic)
Collecting pytz (from pysaml2)
Collecting netaddr!=0.7.16,>=0.7.12 (from neutron)
Collecting oslo.reports>=0.6.0 (from heat)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from oslo.concurrency>=3.7.1->ironic)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting osprofiler>=1.1.0 (from cinder)
Collecting oslo.versionedobjects>=1.5.0 (from neutron)
Collecting oslo.log>=1.14.0 (from nova)
Collecting iso8601>=0.1.9 (from python-keystoneclient)
Collecting sqlalchemy-migrate>=0.9.6 (from heat)
Collecting sqlalchemy-migrate>=0.9.6 (from oslo.db>=4.1.0->ironic)
Collecting contextlib2>=0.4.0 (from futurist>=0.11.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting oslo.utils>=3.5.0 (from cinder)
Collecting castellan>=0.3.1 (from nova)
Collecting alembic>=0.8.0 (from neutron)
Collecting PrettyTable<0.8,>=0.7 (from python-keystoneclient)
Collecting netaddr!=0.7.16,>=0.7.12 (from heat)
Collecting Jinja2>=2.8 (from oslo.middleware>=3.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,<3.0.0,>=2.0.0->ironic)
Collecting python-swiftclient>=2.2.0 (from cinder)
Requirement already satisfied: setuptools in /tmp/openstack-venv-builder/venvs/keystone/lib/python2.7/site-packages (from python-ldap)
Collecting netaddr!=0.7.16,>=0.7.12 (from nova)
Collecting pyOpenSSL>=0.14 (from neutron_lbaas)
Collecting python-cinderclient>=1.3.1 (from python-openstackclient)
Collecting python-dateutil>=2.4.2 (from oslo.log>=1.14.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->ironic)
Collecting oslo.context>=0.2.0 (from heat)
Collecting WebOb>=1.2.3 (from cinder)
Collecting pyasn1-modules (from neutron_lbaas)
Collecting oslo.reports>=0.6.0 (from nova)
Collecting python-novaclient!=2.33.0,>=2.29.0 (from python-openstackclient)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->ironic)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log>=1.14.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting oslo.cache>=1.5.0 (from heat)
Collecting oslo.reports>=0.6.0 (from cinder)
Collecting python-barbicanclient>=3.3.0 (from neutron_lbaas)
Collecting PrettyTable<0.8,>=0.7 (from nova)
Collecting pycparser (from cffi>=0.4->xattr>=0.4->swift)
Collecting openstacksdk>=0.8.1 (from python-openstackclient)
Collecting PyYAML>=3.1.0 (from oslo.messaging>=4.0.0->ironic)
Collecting oslo.service>=1.0.0 (from heat)
Collecting pyparsing>=2.0.1 (from cinder)
Collecting pyasn1 (from neutron_lbaas)
Collecting rfc3986>=0.2.0 (from nova)
Collecting repoze.lru>=0.3 (from Routes!=2.0,!=2.1,>=1.12.3; python_version == "2.7"->oslo.service>=1.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->ironic)
Collecting cliff!=1.16.0,!=1.17.0,>=1.15.0 (from python-openstackclient)
Collecting oslo.log>=1.14.0 (from cinder)
Collecting keystoneauth1>=2.1.0 (from keystonemiddleware)
Collecting Babel!=2.3.0,!=2.3.1,!=2.3.2,!=2.3.3,>=1.3 (from python-glanceclient)
Collecting oslo.cache>=1.5.0 (from nova)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.5.0->oslo.service>=1.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->ironic)
Collecting python-glanceclient>=2.0.0 (from python-openstackclient)
Collecting python-novaclient!=2.33.0,>=2.29.0 (from cinder)
Collecting alembic>=0.8.0 (from nova)
Collecting positional>=1.0.1 (from keystonemiddleware)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from oslo.concurrency>=3.5.0->oslo.service>=1.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->ironic)
Collecting os-client-config>=1.13.1 (from python-openstackclient)
Collecting oslo.context>=0.2.0 (from cinder)
Collecting appdirs>=1.3.0 (from python-ironicclient)
Collecting pycadf!=2.0.0,>=1.1.0 (from keystonemiddleware)
Collecting MarkupSafe (from Jinja2>=2.8->oslo.middleware>=3.0.0->oslo.messaging>=4.0.0->ceilometermiddleware)
Collecting warlock<2,>=1.0.1 (from python-glanceclient)
Collecting warlock<2,>=1.0.1 (from python-glanceclient>=2.0.0->ironic)
Collecting retrying!=1.3.0,>=1.2.3 (from oslo.concurrency>=3.7.1->keystone)
Installing collected packages: iso8601, pbr, pytz, Babel, six, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, msgpack-python, oslo.serialization, stevedore, oslo.config, pycadf, pika, pika-pool, retrying, repoze.lru, Routes, python-dateutil, pyinotify, oslo.context, oslo.log, pastedeploy, fasteners, enum34, oslo.concurrency, WebOb, Paste, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, PyYAML, contextlib2, futures, futurist, MarkupSafe, Jinja2, oslo.middleware, cachetools, oslo.messaging, ceilometermiddleware, dnspython, ecdsa, httplib2, positional, requests, keystoneauth1, PrettyTable, python-keystoneclient, keystonemiddleware, pycrypto, pyeclib, simplejson, python-cinderclient, python-memcached, python-swiftclient, pycparser, cffi, xattr, swift, virtualenv, virtualenv-tools
Collecting keystoneauth1>=2.1.0 (from keystonemiddleware)
Collecting python-openstackclient>=2.1.0 (from python-ironicclient)
Collecting iso8601>=0.1.9 (from python-ceilometerclient)
Collecting iso8601>=0.1.9 (from python-keystoneclient)
Collecting Routes!=2.0,!=2.1,>=1.12.3; python_version == "2.7" (from oslo.service>=1.0.0->ironic)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.7.1->keystone)
Collecting PrettyTable<0.8,>=0.7 (from python-ceilometerclient)
Collecting positional>=1.0.1 (from keystonemiddleware)
Collecting simplejson>=2.2.0 (from python-neutronclient)
Collecting cliff!=1.16.0,!=1.17.0,>=1.15.0 (from python-ironicclient)
Collecting PasteDeploy>=1.5.0 (from oslo.service>=1.0.0->ironic)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from oslo.concurrency>=3.7.1->keystone)
Collecting simplejson>=2.2.0 (from python-cinderclient)
Collecting pycadf!=2.0.0,>=1.1.0 (from keystonemiddleware)
Collecting os-client-config>=1.13.1 (from python-neutronclient)
Collecting monotonic>=0.6 (from oslo.service>=1.0.0->ironic)
Collecting dogpile.cache>=0.5.7 (from python-ironicclient)
Collecting alembic>=0.8.0 (from oslo.db>=4.1.0->keystone)
Collecting warlock<2,>=1.0.1 (from python-glanceclient)
Collecting PrettyTable<0.8,>=0.7 (from python-cinderclient)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=3.5.0->keystonemiddleware)
Collecting Paste (from oslo.service>=1.0.0->ironic)
Collecting debtcollector>=1.2.0 (from python-keystoneclient)
Collecting idna>=2.0 (from cryptography!=1.3.0,>=1.0->keystone)
Collecting debtcollector>=1.2.0 (from python-keystoneclient)
Collecting cliff!=1.16.0,!=1.17.0,>=1.15.0 (from python-heatclient)
Collecting pytz>=2013.6 (from oslo.utils>=3.5.0->keystonemiddleware)
Collecting jsonpointer>=1.9 (from jsonpatch>=1.1->ironic)
Collecting simplejson>=2.2.0 (from python-novaclient)
Collecting cffi>=1.4.1 (from cryptography!=1.3.0,>=1.0->keystone)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.7.1->cinder)
Collecting os-client-config>=1.13.1 (from python-neutronclient)
Collecting contextlib2>=0.4.0 (from futurist>=0.11.0->ironic)
Collecting numpy (from websockify)
Collecting ipaddress (from cryptography!=1.3.0,>=1.0->keystone)
Collecting monotonic>=0.6 (from oslo.utils>=3.5.0->keystonemiddleware)
Collecting alembic>=0.8.0 (from oslo.db>=4.1.0->cinder)
Collecting openstacksdk>=0.8.1 (from python-openstackclient)
Collecting Mako>=0.4.0 (from pecan>=1.0.0->ironic)
Collecting msgpack-python>=0.4.0 (from oslo.serialization>=1.10.0->keystonemiddleware)
Collecting pyasn1>=0.1.8 (from cryptography!=1.3.0,>=1.0->keystone)
Collecting rsa>=3.1.4 (from oauth2client>=1.5.0->cinder)
Collecting WebTest>=1.3.1 (from pecan>=1.0.0->ironic)
Collecting futures>=2.1.3 (from python-swiftclient)
Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,<3.0.0,>=2.0.0->keystone)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.7.1->neutron)
Collecting pyasn1-modules>=0.0.5 (from oauth2client>=1.5.0->cinder)
Collecting singledispatch (from pecan>=1.0.0->ironic)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.7.1->heat)
Collecting sqlparse (from sqlalchemy-migrate>=0.9.6->keystone)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from oslo.concurrency>=3.7.1->neutron)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=3.5.0->keystonemiddleware)
Collecting logutils>=0.3 (from pecan>=1.0.0->ironic)
Collecting pyasn1>=0.1.7 (from oauth2client>=1.5.0->cinder)
Collecting Tempita>=0.4 (from sqlalchemy-migrate>=0.9.6->keystone)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from oslo.concurrency>=3.7.1->heat)
Collecting sqlalchemy-migrate>=0.9.6 (from oslo.db>=4.1.0->neutron)
Collecting pytz>=2013.6 (from oslo.utils>=3.5.0->keystonemiddleware)
Collecting pycrypto!=2.4,>=2.1 (from paramiko>=1.16.0->ironic)
Collecting voluptuous>=0.8.6 (from tooz>=1.28.0->cinder)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->keystone)
Collecting alembic>=0.8.0 (from oslo.db>=4.1.0->heat)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->neutron)
Collecting zake>=0.1.6 (from tooz>=1.28.0->cinder)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->keystone)
Collecting idna>=2.0 (from cryptography!=1.3.0,>=1.0->heat)
Collecting ecdsa>=0.11 (from paramiko>=1.16.0->ironic)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->neutron)
Collecting monotonic>=0.6 (from oslo.utils>=3.5.0->keystonemiddleware)
Collecting futurist>=0.11.0 (from tooz>=1.28.0->cinder)
Collecting PyYAML>=3.1.0 (from oslo.messaging>=4.0.0->keystone)
Collecting cffi>=1.4.1 (from cryptography!=1.3.0,>=1.0->heat)
Collecting msgpack-python>=0.4.0 (from oslo.serialization>=1.10.0->ironic)
Collecting msgpack-python>=0.4.0 (from oslo.serialization>=1.10.0->keystonemiddleware)
Collecting futurist>=0.11.0 (from oslo.messaging>=4.0.0->neutron)
Collecting futures>=3.0; python_version == "2.7" or python_version == "2.6" (from tooz>=1.28.0->cinder)
Collecting futurist>=0.11.0 (from oslo.messaging>=4.0.0->keystone)
Collecting ipaddress (from cryptography!=1.3.0,>=1.0->heat)
Collecting simplejson>=2.2.0 (from python-neutronclient!=4.1.0,>=2.6.0->ironic)
Collecting retrying!=1.3.0,>=1.2.3 (from oslo.concurrency>=3.7.1->nova)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->neutron)
Requirement already satisfied: setuptools>=1.0 in /tmp/openstack-venv-builder/venvs/heat/lib/python2.7/site-packages (from cryptography!=1.3.0,>=1.0->heat)
Collecting msgpack-python>=0.4.0 (from tooz>=1.28.0->cinder)
Collecting pyasn1>=0.1.8 (from cryptography!=1.3.0,>=1.0->heat)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->keystone)
Collecting os-client-config>=1.13.1 (from python-neutronclient!=4.1.0,>=2.6.0->ironic)
Collecting fasteners>=0.7 (from oslo.concurrency>=3.7.1->nova)
Collecting futures>=3.0; python_version == "2.7" or python_version == "2.6" (from oslo.messaging>=4.0.0->neutron)
Collecting sqlparse (from sqlalchemy-migrate>=0.9.6->cinder)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->heat)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->neutron)
Collecting futures>=3.0; python_version == "2.7" or python_version == "2.6" (from oslo.messaging>=4.0.0->keystone)
Collecting enum34; python_version == "2.7" or python_version == "2.6" or python_version == "3.3" (from oslo.concurrency>=3.7.1->nova)
Collecting MarkupSafe (from Jinja2>=2.8->ironic)
Collecting Tempita>=0.4 (from sqlalchemy-migrate>=0.9.6->cinder)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->neutron)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->heat)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->keystone)
Collecting idna>=2.0 (from cryptography!=1.3.0,>=1.0->nova)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=3.5.0->ironic)
Collecting jsonschema!=2.5.0,<3.0.0,>=2.0.0 (from python-designateclient>=1.5.0->neutron)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->cinder)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->keystone)
Collecting cffi>=1.4.1 (from cryptography!=1.3.0,>=1.0->nova)
Collecting netifaces>=0.10.4 (from oslo.utils>=3.5.0->ironic)
Collecting futurist>=0.11.0 (from oslo.messaging>=4.0.0->heat)
Collecting Mako>=0.4.0 (from pecan>=1.0.0->neutron)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->cinder)
Collecting monotonic>=0.6 (from oslo.service>=1.0.0->keystone)
Collecting numpy (from websockify>=0.6.1->ironic)
Collecting ipaddress (from cryptography!=1.3.0,>=1.0->nova)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->heat)
Collecting WebTest>=1.3.1 (from pecan>=1.0.0->neutron)
Collecting dogpile.core>=0.4.1 (from dogpile.cache>=0.5.7->keystone)
Collecting PyYAML>=3.1.0 (from oslo.messaging>=4.0.0->cinder)
Collecting pyasn1>=0.1.8 (from cryptography!=1.3.0,>=1.0->nova)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->heat)
Collecting netaddr!=0.7.16,>=0.7.12 (from oslo.config>=3.7.0->keystone)
Collecting singledispatch (from pecan>=1.0.0->neutron)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->cinder)
Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,<3.0.0,>=2.0.0->nova)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->heat)
Collecting logutils>=0.3 (from pecan>=1.0.0->neutron)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=3.5.0->keystone)
Collecting sqlparse (from sqlalchemy-migrate>=0.9.6->nova)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->cinder)
Collecting jsonschema!=2.5.0,<3.0.0,>=2.0.0 (from python-designateclient>=1.5.0->heat)
Collecting python-dateutil>=2.4.2 (from oslo.log>=1.14.0->ironic)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->neutron)
Collecting netifaces>=0.10.4 (from oslo.utils>=3.5.0->keystone)
Collecting Tempita>=0.4 (from sqlalchemy-migrate>=0.9.6->nova)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->cinder)
Collecting msgpack-python>=0.4.0 (from oslo.serialization>=1.10.0->heat)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log>=1.14.0->ironic)
Collecting MarkupSafe (from Jinja2>=2.8->neutron)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->oslo.log)
Collecting os-client-config>=1.13.1 (from python-neutronclient!=4.1.0,>=2.6.0->nova)
Collecting warlock<2,>=1.0.1 (from python-glanceclient>=2.0.0->cinder)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->heat)
Collecting simplegeneric (from WSME>=0.8->ironic)
Collecting python-dateutil>=2.4.2 (from oslo.log>=1.14.0->neutron)
Collecting MarkupSafe (from Jinja2>=2.8->oslo.middleware)
Collecting pika-pool>=0.1.3 (from oslo.messaging>=4.0.0->nova)
Collecting monotonic>=0.6 (from oslo.service>=1.0.0->cinder)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from debtcollector>=1.2.0->heat)
Collecting pycadf!=2.0.0,>=1.1.0 (from keystonemiddleware!=4.1.0,>=4.0.0->ironic)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log>=1.14.0->neutron)
Collecting simplejson>=2.2.0 (from python-cinderclient>=1.3.1->python-openstackclient)
Collecting kombu>=3.0.25 (from oslo.messaging>=4.0.0->nova)
Collecting netaddr!=0.7.16,>=0.7.12 (from oslo.vmware>=1.16.0->cinder)
Collecting Jinja2>=2.8 (from oslo.middleware>=3.0.0->heat)
Collecting python-editor>=0.3 (from alembic>=0.8.0->ironic)
Collecting psutil<2.0.0,>=1.1.1 (from oslo.reports>=0.6.0->neutron)
Collecting cmd2>=0.6.7 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-openstackclient)
Collecting PyYAML>=3.1.0 (from oslo.messaging>=4.0.0->nova)
Collecting repoze.lru>=0.3 (from Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7"->heat)
Collecting urllib3>=1.8.3 (from oslo.vmware>=1.16.0->cinder)
Collecting python-cinderclient>=1.3.1 (from python-openstackclient>=2.1.0->python-ironicclient)
Collecting python-editor>=0.3 (from alembic>=0.8.0->neutron)
Collecting pyparsing>=2.0.1 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-openstackclient)
Collecting futurist>=0.11.0 (from oslo.messaging>=4.0.0->nova)
Collecting monotonic>=0.6 (from oslo.utils>=3.5.0->heat)
Collecting cliff!=1.16.0,!=1.17.0,>=1.15.0 (from python-barbicanclient>=3.3.0->cinder)
Collecting python-novaclient!=2.33.0,>=2.29.0 (from python-openstackclient>=2.1.0->python-ironicclient)
Collecting cryptography>=0.7 (from pyOpenSSL>=0.14->neutron_lbaas)
Collecting unicodecsv>=0.8.0 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-openstackclient)
Collecting pika>=0.10.0 (from oslo.messaging>=4.0.0->nova)
Collecting netifaces>=0.10.4 (from oslo.utils>=3.5.0->heat)
Collecting Jinja2>=2.8 (from oslo.middleware>=3.0.0->cinder)
Collecting jsonpatch<2,>=0.10 (from warlock<2,>=1.0.1->python-glanceclient)
Collecting warlock<2,>=1.0.1 (from python-glanceclient>=2.0.0->python-openstackclient)
Collecting openstacksdk>=0.8.1 (from python-openstackclient>=2.1.0->python-ironicclient)
Collecting futures>=3.0; python_version == "2.7" or python_version == "2.6" (from oslo.messaging>=4.0.0->nova)
Collecting python-dateutil (from croniter>=0.3.4->heat)
Collecting repoze.lru>=0.3 (from Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7"->cinder)
Collecting requestsexceptions>=1.1.1 (from os-client-config>=1.13.1->python-neutronclient)
Collecting requestsexceptions>=1.1.1 (from os-client-config>=1.13.1->python-openstackclient)
Collecting amqp>=1.4.0 (from oslo.messaging>=4.0.0->nova)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log>=1.14.0->heat)
Collecting cmd2>=0.6.7 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-ironicclient)
Collecting uritemplate<1,>=0.6 (from google-api-python-client>=1.4.2->cinder)
Collecting appdirs>=1.3.0 (from os-client-config>=1.13.1->python-neutronclient)
Collecting appdirs>=1.3.0 (from os-client-config>=1.13.1->python-openstackclient)
Collecting cachetools>=1.0.0 (from oslo.messaging>=4.0.0->nova)
Collecting psutil<2.0.0,>=1.1.1 (from oslo.reports>=0.6.0->heat)
Collecting pyparsing>=2.0.1 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-ironicclient)
Collecting automaton>=0.5.0 (from taskflow>=1.26.0->cinder)
Collecting sqlparse (from sqlalchemy-migrate>=0.9.6->oslo.db>=4.1.0->neutron)
Collecting python-editor>=0.3 (from alembic>=0.8.0->oslo.db>=4.1.0->keystone)
Collecting warlock<2,>=1.0.1 (from python-glanceclient>=2.0.0->nova)
Collecting sqlparse (from sqlalchemy-migrate>=0.9.6->heat)
Collecting unicodecsv>=0.8.0 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-ironicclient)
Collecting jsonschema!=2.5.0,<3.0.0,>=2.0.0 (from taskflow>=1.26.0->cinder)
Collecting decorator (from sqlalchemy-migrate>=0.9.6->oslo.db>=4.1.0->neutron)
Collecting Mako (from alembic>=0.8.0->oslo.db>=4.1.0->keystone)
Collecting ecdsa>=0.11 (from paramiko>=1.16.0->nova)
Collecting decorator (from sqlalchemy-migrate>=0.9.6->heat)
Collecting dogpile.core>=0.4.1 (from dogpile.cache>=0.5.7->python-ironicclient)
Collecting contextlib2>=0.4.0 (from taskflow>=1.26.0->cinder)
Collecting Tempita>=0.4 (from sqlalchemy-migrate>=0.9.6->oslo.db>=4.1.0->neutron)
Collecting pycparser (from cffi>=1.4.1->cryptography!=1.3.0,>=1.0->keystone)
Successfully installed Babel-2.2.0 Jinja2-2.8 MarkupSafe-0.23 Paste-2.0.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 WebOb-1.5.1 amqp-1.4.9 anyjson-0.3.3 cachetools-1.1.5 ceilometermiddleware-0.4.0 cffi-1.5.2 contextlib2-0.5.1 debtcollector-1.3.0 dnspython-1.12.0 ecdsa-0.13 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 futures-3.0.5 futurist-0.13.0 greenlet-0.4.9 httplib2-0.9.2 iso8601-0.1.11 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 pastedeploy-1.5.2 pbr-1.8.1 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 pycadf-2.2.0 pycparser-2.14 pycrypto-2.6.1 pyeclib-1.2.0 pyinotify-0.9.6 python-cinderclient-1.6.0 python-dateutil-2.5.0 python-keystoneclient-2.3.1 python-memcached-1.57 python-swiftclient-3.0.0 pytz-2015.7 repoze.lru-0.6 requests-2.9.1 retrying-1.3.3 simplejson-3.8.2 six-1.10.0 stevedore-1.12.0 swift-2.7.1.dev13 virtualenv-14.0.6 virtualenv-tools-1.0 wrapt-1.10.6 xattr-0.8.0
Collecting repoze.lru>=0.3 (from Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3; python_version == "2.7"->nova)
Collecting Tempita>=0.4 (from sqlalchemy-migrate>=0.9.6->heat)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->python-keystoneclient)
Collecting networkx>=1.10 (from taskflow>=1.26.0->cinder)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->keystone)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->neutron)
Collecting MarkupSafe (from Jinja2>=2.8->nova)
Collecting dogpile.cache>=0.5.7 (from oslo.cache>=1.5.0->heat)
Collecting sqlparse (from sqlalchemy-migrate>=0.9.6->oslo.db>=4.1.0->ironic)
Collecting contextlib2>=0.4.0 (from futurist>=0.11.0->oslo.messaging>=4.0.0->keystone)
Collecting contextlib2>=0.4.0 (from futurist>=0.11.0->oslo.messaging>=4.0.0->neutron)
Collecting python-dateutil>=2.4.2 (from oslo.log>=1.14.0->nova)
Collecting funcsigs>=0.4; python_version == "2.7" or python_version == "2.6" (from oslo.utils>=3.5.0->cinder)
Collecting Paste (from oslo.service>=1.0.0->heat)
Collecting decorator (from sqlalchemy-migrate>=0.9.6->oslo.db>=4.1.0->ironic)
Collecting jsonpatch<2,>=0.10 (from warlock<2,>=1.0.1->python-glanceclient>=2.0.0->python-openstackclient)
Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,<3.0.0,>=2.0.0->python-designateclient>=1.5.0->neutron)
Collecting netifaces>=0.10.4 (from oslo.utils>=3.5.0->cinder)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log>=1.14.0->nova)
Collecting jsonpatch<2,>=0.10 (from warlock<2,>=1.0.1->python-glanceclient)
Collecting Tempita>=0.4 (from sqlalchemy-migrate>=0.9.6->oslo.db>=4.1.0->ironic)
Collecting jsonpointer>=1.9 (from jsonpatch<2,>=0.10->warlock<2,>=1.0.1->python-glanceclient>=2.0.0->python-openstackclient)
Collecting waitress>=0.8.5 (from WebTest>=1.3.1->pecan>=1.0.0->neutron)
Collecting psutil<2.0.0,>=1.1.1 (from oslo.reports>=0.6.0->cinder)
Collecting python-editor>=0.3 (from alembic>=0.8.0->nova)
Collecting cmd2>=0.6.7 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-heatclient)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->ironic)
Installing collected packages: httplib2, pbr, six, stevedore, pytz, Babel, iso8601, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, retrying, fasteners, oslo.config, enum34, oslo.concurrency, sqlparse, decorator, Tempita, SQLAlchemy, sqlalchemy-migrate, oslo.context, python-editor, MarkupSafe, Mako, alembic, oslo.db, idna, pycparser, cffi, ipaddress, pyasn1, cryptography, functools32, jsonschema, Paste, positional, requests, keystoneauth1, msgpack-python, oslo.serialization, PrettyTable, python-keystoneclient, pika, pika-pool, repoze.lru, Routes, python-dateutil, pyinotify, oslo.log, PasteDeploy, WebOb, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, PyYAML, contextlib2, futures, futurist, Jinja2, oslo.middleware, cachetools, oslo.messaging, oslo.policy, dogpile.core, dogpile.cache, pycadf, zope.interface, repoze.who, pyOpenSSL, pycrypto, pysaml2, oauthlib, keystonemiddleware, passlib, oslo.cache, keystone, ldappool, lxml, pymysql, python-ldap, python-memcached, simplejson, python-cinderclient, python-novaclient, requestsexceptions, appdirs, os-client-config, openstacksdk, pyparsing, cmd2, unicodecsv, cliff, jsonpointer, jsonpatch, warlock, python-glanceclient, python-openstackclient, virtualenv, virtualenv-tools
Collecting beautifulsoup4 (from WebTest>=1.3.1->pecan>=1.0.0->neutron)
Collecting python-dateutil>=2.4.2 (from oslo.log>=1.14.0->cinder)
Collecting Mako (from alembic>=0.8.0->nova)
Collecting repoze.lru>=0.3 (from Routes!=2.0,!=2.1,>=1.12.3; python_version == "2.7"->oslo.service>=1.0.0->ironic)
Collecting pyparsing>=2.0.1 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-heatclient)
Collecting idna>=2.0 (from cryptography>=0.7->pyOpenSSL>=0.14->neutron_lbaas)
Collecting pyinotify>=0.9.6; sys_platform != "win32" and sys_platform != "darwin" and sys_platform != "sunos5" (from oslo.log>=1.14.0->cinder)
Collecting openstacksdk>=0.8.1 (from python-openstackclient>=2.1.0->python-ironicclient)
Collecting waitress>=0.8.5 (from WebTest>=1.3.1->pecan>=1.0.0->ironic)
Collecting unicodecsv>=0.8.0 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-heatclient)
Collecting cffi>=1.4.1 (from cryptography>=0.7->pyOpenSSL>=0.14->neutron_lbaas)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->python-keystoneclient)
Collecting requestsexceptions>=1.1.1 (from os-client-config>=1.13.1->python-neutronclient)
Collecting beautifulsoup4 (from WebTest>=1.3.1->pecan>=1.0.0->ironic)
Collecting cmd2>=0.6.7 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-ironicclient)
Collecting ipaddress (from cryptography>=0.7->pyOpenSSL>=0.14->neutron_lbaas)
Collecting python-editor>=0.3 (from alembic>=0.8.0->oslo.db>=4.1.0->cinder)
Collecting appdirs>=1.3.0 (from os-client-config>=1.13.1->python-neutronclient)
Collecting requestsexceptions>=1.1.1 (from os-client-config>=1.13.1->python-neutronclient!=4.1.0,>=2.6.0->ironic)
Collecting pyparsing>=2.0.1 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-ironicclient)
Requirement already satisfied: setuptools>=1.0 in /tmp/openstack-venv-builder/venvs/neutron/lib/python2.7/site-packages (from cryptography>=0.7->pyOpenSSL>=0.14->neutron_lbaas)
Collecting jsonpointer>=1.9 (from jsonpatch<2,>=0.10->warlock<2,>=1.0.1->python-glanceclient)
Installing collected packages: httplib2, six, retrying, oslo.rootwrap, pytz, Babel, iso8601, pbr, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, fasteners, stevedore, oslo.config, enum34, oslo.concurrency, psutil, sqlparse, decorator, Tempita, SQLAlchemy, sqlalchemy-migrate, oslo.context, python-editor, MarkupSafe, Mako, alembic, oslo.db, functools32, jsonschema, positional, requests, keystoneauth1, msgpack-python, oslo.serialization, PrettyTable, python-keystoneclient, pika, pika-pool, repoze.lru, Routes, python-dateutil, pyinotify, oslo.log, PasteDeploy, WebOb, Paste, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, PyYAML, contextlib2, futures, futurist, Jinja2, oslo.middleware, cachetools, oslo.messaging, jsonpointer, jsonpatch, warlock, python-glanceclient, pysendfile, ironic-lib, oslo.policy, waitress, beautifulsoup4, WebTest, singledispatch, logutils, pecan, oslo.versionedobjects, pycrypto, ecdsa, paramiko, automaton, simplejson, pyparsing, cmd2, unicodecsv, cliff, requestsexceptions, appdirs, os-client-config, python-neutronclient, python-swiftclient, numpy, websockify, simplegeneric, WSME, pycadf, keystonemiddleware, ironic, pymysql, python-cinderclient, python-novaclient, openstacksdk, python-openstackclient, dogpile.core, dogpile.cache, python-ironicclient, virtualenv, virtualenv-tools
Collecting Mako (from alembic>=0.8.0->oslo.db>=4.1.0->cinder)
Collecting python-editor>=0.3 (from alembic>=0.8.0->oslo.db>=4.1.0->heat)
Collecting unicodecsv>=0.8.0 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-ironicclient)
Collecting pycparser (from cffi>=1.4.1->cryptography>=0.7->pyOpenSSL>=0.14->neutron_lbaas)
Requirement already satisfied: setuptools>=0.6b1 in /tmp/openstack-venv-builder/venvs/cinder/lib/python2.7/site-packages (from voluptuous>=0.8.6->tooz>=1.28.0->cinder)
Collecting Mako (from alembic>=0.8.0->oslo.db>=4.1.0->heat)
Collecting kazoo!=2.1,>=1.3.1 (from zake>=0.1.6->tooz>=1.28.0->cinder)
Collecting dogpile.core>=0.4.1 (from dogpile.cache>=0.5.7->python-ironicclient)
Installing collected packages: pbr, six, stevedore, pyparsing, cmd2, unicodecsv, PyYAML, PrettyTable, cliff, configobj, httplib2, iso8601, pytz, Babel, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, positional, requests, keystoneauth1, msgpack-python, oslo.serialization, WebOb, oslo.config, pycadf, python-keystoneclient, oslo.context, keystonemiddleware, retrying, fasteners, enum34, oslo.concurrency, sqlparse, decorator, Tempita, SQLAlchemy, sqlalchemy-migrate, python-editor, MarkupSafe, Mako, alembic, oslo.db, repoze.lru, Routes, Paste, pika, pika-pool, python-dateutil, pyinotify, oslo.log, PasteDeploy, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, contextlib2, futures, futurist, Jinja2, oslo.middleware, cachetools, oslo.messaging, functools32, jsonschema, python-designateclient, oslo.rootwrap, oslo.policy, waitress, beautifulsoup4, WebTest, singledispatch, logutils, pecan, neutron-lib, simplejson, requestsexceptions, appdirs, os-client-config, python-neutronclient, ryu, psutil, oslo.reports, ovs, python-novaclient, oslo.versionedobjects, neutron, neutron-fwaas, idna, pycparser, cffi, ipaddress, pyasn1, cryptography, pyOpenSSL, pyasn1-modules, python-barbicanclient, neutron-lbaas, neutron-vpnaas, pycrypto, pymysql, jsonpointer, jsonpatch, warlock, python-glanceclient, python-memcached, virtualenv, virtualenv-tools
Collecting pycparser (from cffi>=1.4.1->cryptography!=1.3.0,>=1.0->heat)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->cinder)
Collecting wrapt>=1.7.0 (from debtcollector>=1.2.0->python-keystoneclient)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->heat)
Collecting jsonpatch<2,>=0.10 (from warlock<2,>=1.0.1->python-glanceclient>=2.0.0->cinder)
Collecting pycparser (from cffi>=1.4.1->cryptography!=1.3.0,>=1.0->nova)
Collecting contextlib2>=0.4.0 (from futurist>=0.11.0->oslo.messaging>=4.0.0->heat)
Collecting cmd2>=0.6.7 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-barbicanclient>=3.3.0->cinder)
Collecting requestsexceptions>=1.1.1 (from os-client-config>=1.13.1->python-neutronclient!=4.1.0,>=2.6.0->nova)
Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,<3.0.0,>=2.0.0->python-designateclient>=1.5.0->heat)
Collecting unicodecsv>=0.8.0 (from cliff!=1.16.0,!=1.17.0,>=1.15.0->python-barbicanclient>=3.3.0->cinder)
Collecting anyjson>=0.3.3 (from kombu>=3.0.25->oslo.messaging>=4.0.0->nova)
Collecting MarkupSafe (from Jinja2>=2.8->oslo.middleware>=3.0.0->heat)
Collecting MarkupSafe (from Jinja2>=2.8->oslo.middleware>=3.0.0->cinder)
Collecting contextlib2>=0.4.0 (from futurist>=0.11.0->oslo.messaging>=4.0.0->nova)
Collecting dogpile.core>=0.4.1 (from dogpile.cache>=0.5.7->oslo.cache>=1.5.0->heat)
Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,<3.0.0,>=2.0.0->taskflow>=1.26.0->cinder)
Collecting jsonpatch<2,>=0.10 (from warlock<2,>=1.0.1->python-glanceclient>=2.0.0->nova)
Collecting jsonpointer>=1.9 (from jsonpatch<2,>=0.10->warlock<2,>=1.0.1->python-glanceclient)
Collecting jsonpointer>=1.9 (from jsonpatch<2,>=0.10->warlock<2,>=1.0.1->python-glanceclient>=2.0.0->cinder)
Collecting jsonpointer>=1.9 (from jsonpatch<2,>=0.10->warlock<2,>=1.0.1->python-glanceclient>=2.0.0->nova)
Installing collected packages: pytz, Babel, six, retrying, pbr, stevedore, iso8601, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, fasteners, oslo.config, enum34, oslo.concurrency, sqlparse, decorator, Tempita, SQLAlchemy, sqlalchemy-migrate, oslo.context, python-editor, MarkupSafe, Mako, alembic, oslo.db, idna, pycparser, cffi, ipaddress, pyasn1, cryptography, positional, requests, keystoneauth1, msgpack-python, oslo.serialization, PrettyTable, python-keystoneclient, python-ceilometerclient, futures, python-swiftclient, simplejson, python-cinderclient, python-novaclient, requestsexceptions, PyYAML, appdirs, os-client-config, openstacksdk, pyparsing, cmd2, unicodecsv, cliff, functools32, jsonschema, jsonpointer, jsonpatch, warlock, python-glanceclient, python-openstackclient, python-heatclient, python-senlinclient, pika, pika-pool, repoze.lru, Routes, python-dateutil, pyinotify, oslo.log, PasteDeploy, WebOb, Paste, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, contextlib2, futurist, Jinja2, oslo.middleware, cachetools, oslo.messaging, lxml, python-designateclient, python-zaqarclient, python-mistralclient, oslo.policy, oslo.versionedobjects, python-troveclient, python-barbicanclient, pycrypto, python-manilaclient, python-neutronclient, osprofiler, python-magnumclient, python-saharaclient, croniter, psutil, oslo.reports, pycadf, keystonemiddleware, dogpile.core, dogpile.cache, oslo.cache, heat, httplib2, pymysql, python-memcached, virtualenv, virtualenv-tools
Installing collected packages: pytz, Babel, six, retrying, suds-jurko, pbr, stevedore, iso8601, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, fasteners, oslo.config, enum34, oslo.concurrency, sqlparse, decorator, Tempita, SQLAlchemy, sqlalchemy-migrate, oslo.context, python-editor, MarkupSafe, Mako, alembic, oslo.db, pyasn1, rsa, httplib2, pyasn1-modules, oauth2client, voluptuous, kazoo, zake, msgpack-python, oslo.serialization, contextlib2, futures, futurist, requests, tooz, Paste, positional, keystoneauth1, PrettyTable, python-keystoneclient, pika, pika-pool, repoze.lru, Routes, python-dateutil, pyinotify, oslo.log, PasteDeploy, WebOb, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, PyYAML, Jinja2, oslo.middleware, cachetools, oslo.messaging, lxml, functools32, jsonschema, jsonpointer, jsonpatch, warlock, python-glanceclient, urllib3, oslo.vmware, oslo.rootwrap, oslo.policy, rtslib-fb, oslo.versionedobjects, pycrypto, ecdsa, paramiko, pyparsing, cmd2, unicodecsv, cliff, python-barbicanclient, simplejson, uritemplate, google-api-python-client, os-brick, os-win, automaton, networkx, taskflow, osprofiler, python-swiftclient, psutil, oslo.reports, pycadf, keystonemiddleware, python-novaclient, cinder, pymysql, python-cinderclient, python-memcached, virtualenv, virtualenv-tools
Installing collected packages: httplib2, iso8601, pbr, pytz, Babel, six, oslo.i18n, funcsigs, wrapt, debtcollector, monotonic, netaddr, netifaces, oslo.utils, stevedore, positional, requests, keystoneauth1, msgpack-python, oslo.serialization, WebOb, oslo.config, pycadf, PrettyTable, python-keystoneclient, oslo.context, keystonemiddleware, libvirt-python, retrying, fasteners, enum34, oslo.concurrency, psutil, sqlparse, decorator, Tempita, SQLAlchemy, sqlalchemy-migrate, python-editor, MarkupSafe, Mako, alembic, oslo.db, idna, pycparser, cffi, ipaddress, pyasn1, cryptography, functools32, jsonschema, Paste, simplejson, pyparsing, cmd2, unicodecsv, PyYAML, cliff, requestsexceptions, appdirs, os-client-config, python-neutronclient, pika, pika-pool, repoze.lru, Routes, python-dateutil, pyinotify, oslo.log, PasteDeploy, greenlet, eventlet, oslo.service, anyjson, amqp, kombu, contextlib2, futures, futurist, Jinja2, oslo.middleware, cachetools, oslo.messaging, lxml, jsonpointer, jsonpatch, warlock, python-glanceclient, oslo.rootwrap, oslo.policy, oslo.versionedobjects, pycrypto, ecdsa, paramiko, python-cinderclient, os-brick, os-win, boto, numpy, websockify, castellan, oslo.reports, rfc3986, dogpile.core, dogpile.cache, oslo.cache, nova, pymysql, python-novaclient, openstacksdk, python-openstackclient, python-ironicclient, python-memcached, virtualenv, virtualenv-tools
Successfully installed Babel-2.2.0 Jinja2-2.8 Mako-1.0.3 MarkupSafe-0.23 Paste-2.0.2 PasteDeploy-1.5.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 SQLAlchemy-1.0.12 Tempita-0.5.2 WebOb-1.5.1 alembic-0.8.4 amqp-1.4.9 anyjson-0.3.3 appdirs-1.4.0 cachetools-1.1.5 cffi-1.5.2 cliff-2.0.0 cmd2-0.6.8 contextlib2-0.5.1 cryptography-1.2.3 debtcollector-1.3.0 decorator-4.0.9 dogpile.cache-0.5.7 dogpile.core-0.4.1 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 functools32-3.2.3.post2 futures-3.0.5 futurist-0.13.0 greenlet-0.4.9 httplib2-0.9.2 idna-2.0 ipaddress-1.0.16 iso8601-0.1.11 jsonpatch-1.13 jsonpointer-1.10 jsonschema-2.5.1 keystone-9.2.1.dev3 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 ldappool-1.0 lxml-3.5.0 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 oauthlib-1.0.3 openstacksdk-0.8.1 os-client-config-1.16.0 oslo.cache-1.6.0 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.db-4.7.1 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.policy-1.6.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 passlib-1.6.5 pbr-1.8.1 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 pyOpenSSL-0.15.1 pyasn1-0.1.9 pycadf-2.2.0 pycparser-2.14 pycrypto-2.6.1 pyinotify-0.9.6 pymysql-0.7.2 pyparsing-2.1.0 pysaml2-4.0.2 python-cinderclient-1.6.0 python-dateutil-2.5.0 python-editor-0.5 python-glanceclient-2.0.1 python-keystoneclient-2.3.1 python-ldap-2.4.25 python-memcached-1.57 python-novaclient-3.3.2 python-openstackclient-2.3.0 pytz-2015.7 repoze.lru-0.6 repoze.who-2.2 requests-2.9.1 requestsexceptions-1.1.3 retrying-1.3.3 simplejson-3.8.2 six-1.10.0 sqlalchemy-migrate-0.10.0 sqlparse-0.1.18 stevedore-1.12.0 unicodecsv-0.14.1 virtualenv-14.0.6 virtualenv-tools-1.0 warlock-1.2.0 wrapt-1.10.6 zope.interface-4.1.3
Successfully installed Babel-2.2.0 Jinja2-2.8 Mako-1.0.3 MarkupSafe-0.23 Paste-2.0.2 PasteDeploy-1.5.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 SQLAlchemy-1.0.12 Tempita-0.5.2 WSME-0.8.0 WebOb-1.5.1 WebTest-2.0.20 alembic-0.8.4 amqp-1.4.9 anyjson-0.3.3 appdirs-1.4.0 automaton-1.2.0 beautifulsoup4-4.4.1 cachetools-1.1.5 cliff-2.0.0 cmd2-0.6.8 contextlib2-0.5.1 debtcollector-1.3.0 decorator-4.0.9 dogpile.cache-0.5.7 dogpile.core-0.4.1 ecdsa-0.13 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 functools32-3.2.3.post2 futures-3.0.5 futurist-0.13.0 greenlet-0.4.9 httplib2-0.9.2 ironic-5.1.3.dev17 ironic-lib-1.2.0 iso8601-0.1.11 jsonpatch-1.13 jsonpointer-1.10 jsonschema-2.5.1 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 logutils-0.3.3 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 numpy-1.10.4 openstacksdk-0.8.1 os-client-config-1.16.0 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.db-4.7.1 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.policy-1.6.0 oslo.rootwrap-4.1.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 oslo.versionedobjects-1.8.0 paramiko-1.16.0 pbr-1.8.1 pecan-1.0.4 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 psutil-1.2.1 pycadf-2.2.0 pycrypto-2.6.1 pyinotify-0.9.6 pymysql-0.7.2 pyparsing-2.1.0 pysendfile-2.0.1 python-cinderclient-1.6.0 python-dateutil-2.5.0 python-editor-0.5 python-glanceclient-2.0.1 python-ironicclient-1.3.1 python-keystoneclient-2.3.1 python-neutronclient-4.1.1 python-novaclient-3.3.2 python-openstackclient-2.3.0 python-swiftclient-3.0.0 pytz-2015.7 repoze.lru-0.6 requests-2.9.1 requestsexceptions-1.1.3 retrying-1.3.3 simplegeneric-0.8.1 simplejson-3.8.2 singledispatch-3.4.0.3 six-1.10.0 sqlalchemy-migrate-0.10.0 sqlparse-0.1.18 stevedore-1.12.0 unicodecsv-0.14.1 virtualenv-14.0.6 virtualenv-tools-1.0 waitress-0.8.10 warlock-1.2.0 websockify-0.8.0 wrapt-1.10.6
Successfully installed Babel-2.2.0 Jinja2-2.8 Mako-1.0.3 MarkupSafe-0.23 Paste-2.0.2 PasteDeploy-1.5.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 SQLAlchemy-1.0.12 Tempita-0.5.2 WebOb-1.5.1 WebTest-2.0.20 alembic-0.8.4 amqp-1.4.9 anyjson-0.3.3 appdirs-1.4.0 beautifulsoup4-4.4.1 cachetools-1.1.5 cffi-1.5.2 cliff-2.0.0 cmd2-0.6.8 configobj-5.0.6 contextlib2-0.5.1 cryptography-1.2.3 debtcollector-1.3.0 decorator-4.0.9 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 functools32-3.2.3.post2 futures-3.0.5 futurist-0.13.0 greenlet-0.4.9 httplib2-0.9.2 idna-2.0 ipaddress-1.0.16 iso8601-0.1.11 jsonpatch-1.13 jsonpointer-1.10 jsonschema-2.5.1 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 logutils-0.3.3 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 neutron-8.3.1.dev15 neutron-fwaas-8.2.1.dev1 neutron-lbaas-8.3.0 neutron-lib-0.0.2 neutron-vpnaas-8.2.0 os-client-config-1.16.0 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.db-4.7.1 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.policy-1.6.0 oslo.reports-1.7.0 oslo.rootwrap-4.1.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 oslo.versionedobjects-1.8.0 ovs-2.4.0 pbr-1.8.1 pecan-1.0.4 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 psutil-1.2.1 pyOpenSSL-0.15.1 pyasn1-0.1.9 pyasn1-modules-0.0.8 pycadf-2.2.0 pycparser-2.14 pycrypto-2.6.1 pyinotify-0.9.6 pymysql-0.7.2 pyparsing-2.1.0 python-barbicanclient-4.0.1 python-dateutil-2.5.0 python-designateclient-2.1.0 python-editor-0.5 python-glanceclient-2.0.1 python-keystoneclient-2.3.1 python-memcached-1.57 python-neutronclient-4.1.1 python-novaclient-3.3.2 pytz-2015.7 repoze.lru-0.6 requests-2.9.1 requestsexceptions-1.1.3 retrying-1.3.3 ryu-4.0 simplejson-3.8.2 singledispatch-3.4.0.3 six-1.10.0 sqlalchemy-migrate-0.10.0 sqlparse-0.1.18 stevedore-1.12.0 unicodecsv-0.14.1 virtualenv-14.0.6 virtualenv-tools-1.0 waitress-0.8.10 warlock-1.2.0 wrapt-1.10.6
Successfully installed Babel-2.2.0 Jinja2-2.8 Mako-1.0.3 MarkupSafe-0.23 Paste-2.0.2 PasteDeploy-1.5.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 SQLAlchemy-1.0.12 Tempita-0.5.2 WebOb-1.5.1 alembic-0.8.4 amqp-1.4.9 anyjson-0.3.3 automaton-1.2.0 cachetools-1.1.5 cinder-8.1.2.dev16 cliff-2.0.0 cmd2-0.6.8 contextlib2-0.5.1 debtcollector-1.3.0 decorator-4.0.9 ecdsa-0.13 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 functools32-3.2.3.post2 futures-3.0.5 futurist-0.13.0 google-api-python-client-1.5.0 greenlet-0.4.9 httplib2-0.9.2 iso8601-0.1.11 jsonpatch-1.13 jsonpointer-1.10 jsonschema-2.5.1 kazoo-2.2.1 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 lxml-3.5.0 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 networkx-1.11 oauth2client-2.0.1 os-brick-1.2.0 os-win-0.4.2 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.db-4.7.1 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.policy-1.6.0 oslo.reports-1.7.0 oslo.rootwrap-4.1.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 oslo.versionedobjects-1.8.0 oslo.vmware-2.5.0 osprofiler-1.2.0 paramiko-1.16.0 pbr-1.8.1 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 psutil-1.2.1 pyasn1-0.1.9 pyasn1-modules-0.0.8 pycadf-2.2.0 pycrypto-2.6.1 pyinotify-0.9.6 pymysql-0.7.2 pyparsing-2.1.0 python-barbicanclient-4.0.1 python-cinderclient-1.6.0 python-dateutil-2.5.0 python-editor-0.5 python-glanceclient-2.0.1 python-keystoneclient-2.3.1 python-memcached-1.57 python-novaclient-3.3.2 python-swiftclient-3.0.0 pytz-2015.7 repoze.lru-0.6 requests-2.9.1 retrying-1.3.3 rsa-3.3 rtslib-fb-2.1.58 simplejson-3.8.2 six-1.10.0 sqlalchemy-migrate-0.10.0 sqlparse-0.1.18 stevedore-1.12.0 suds-jurko-0.6 taskflow-1.30.0 tooz-1.34.0 unicodecsv-0.14.1 uritemplate-0.6 urllib3-1.14 virtualenv-14.0.6 virtualenv-tools-1.0 voluptuous-0.8.8 warlock-1.2.0 wrapt-1.10.6 zake-0.2.2
Successfully installed Babel-2.2.0 Jinja2-2.8 Mako-1.0.3 MarkupSafe-0.23 Paste-2.0.2 PasteDeploy-1.5.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 SQLAlchemy-1.0.12 Tempita-0.5.2 WebOb-1.5.1 alembic-0.8.4 amqp-1.4.9 anyjson-0.3.3 appdirs-1.4.0 cachetools-1.1.5 cffi-1.5.2 cliff-2.0.0 cmd2-0.6.8 contextlib2-0.5.1 croniter-0.3.11 cryptography-1.2.3 debtcollector-1.3.0 decorator-4.0.9 dogpile.cache-0.5.7 dogpile.core-0.4.1 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 functools32-3.2.3.post2 futures-3.0.5 futurist-0.13.0 greenlet-0.4.9 heat-6.1.1.dev3 httplib2-0.9.2 idna-2.0 ipaddress-1.0.16 iso8601-0.1.11 jsonpatch-1.13 jsonpointer-1.10 jsonschema-2.5.1 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 lxml-3.5.0 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 openstacksdk-0.8.1 os-client-config-1.16.0 oslo.cache-1.6.0 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.db-4.7.1 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.policy-1.6.0 oslo.reports-1.7.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 oslo.versionedobjects-1.8.0 osprofiler-1.2.0 pbr-1.8.1 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 psutil-1.2.1 pyasn1-0.1.9 pycadf-2.2.0 pycparser-2.14 pycrypto-2.6.1 pyinotify-0.9.6 pymysql-0.7.2 pyparsing-2.1.0 python-barbicanclient-4.0.1 python-ceilometerclient-2.4.0 python-cinderclient-1.6.0 python-dateutil-2.5.0 python-designateclient-2.1.0 python-editor-0.5 python-glanceclient-2.0.1 python-heatclient-1.1.0 python-keystoneclient-2.3.1 python-magnumclient-2.0.0 python-manilaclient-1.8.1 python-memcached-1.57 python-mistralclient-2.0.0 python-neutronclient-4.1.1 python-novaclient-3.3.2 python-openstackclient-2.3.0 python-saharaclient-0.14.1 python-senlinclient-0.4.1 python-swiftclient-3.0.0 python-troveclient-2.1.2 python-zaqarclient-1.0.0 pytz-2015.7 repoze.lru-0.6 requests-2.9.1 requestsexceptions-1.1.3 retrying-1.3.3 simplejson-3.8.2 six-1.10.0 sqlalchemy-migrate-0.10.0 sqlparse-0.1.18 stevedore-1.12.0 unicodecsv-0.14.1 virtualenv-14.0.6 virtualenv-tools-1.0 warlock-1.2.0 wrapt-1.10.6
Successfully installed Babel-2.2.0 Jinja2-2.8 Mako-1.0.3 MarkupSafe-0.23 Paste-2.0.2 PasteDeploy-1.5.2 PrettyTable-0.7.2 PyYAML-3.11 Routes-2.2 SQLAlchemy-1.0.12 Tempita-0.5.2 WebOb-1.5.1 alembic-0.8.4 amqp-1.4.9 anyjson-0.3.3 appdirs-1.4.0 boto-2.39.0 cachetools-1.1.5 castellan-0.4.0 cffi-1.5.2 cliff-2.0.0 cmd2-0.6.8 contextlib2-0.5.1 cryptography-1.2.3 debtcollector-1.3.0 decorator-4.0.9 dogpile.cache-0.5.7 dogpile.core-0.4.1 ecdsa-0.13 enum34-1.1.2 eventlet-0.18.4 fasteners-0.14.1 funcsigs-0.4 functools32-3.2.3.post2 futures-3.0.5 futurist-0.13.0 greenlet-0.4.9 httplib2-0.9.2 idna-2.0 ipaddress-1.0.16 iso8601-0.1.11 jsonpatch-1.13 jsonpointer-1.10 jsonschema-2.5.1 keystoneauth1-2.4.2 keystonemiddleware-4.4.1 kombu-3.0.34 libvirt-python-1.3.2 lxml-3.5.0 monotonic-0.6 msgpack-python-0.4.7 netaddr-0.7.18 netifaces-0.10.4 nova-13.1.3.dev13 numpy-1.10.4 openstacksdk-0.8.1 os-brick-1.2.0 os-client-config-1.16.0 os-win-0.4.2 oslo.cache-1.6.0 oslo.concurrency-3.7.1 oslo.config-3.9.0 oslo.context-2.2.0 oslo.db-4.7.1 oslo.i18n-3.5.0 oslo.log-3.3.0 oslo.messaging-4.6.1 oslo.middleware-3.8.0 oslo.policy-1.6.0 oslo.reports-1.7.0 oslo.rootwrap-4.1.0 oslo.serialization-2.4.0 oslo.service-1.8.0 oslo.utils-3.8.0 oslo.versionedobjects-1.8.0 paramiko-1.16.0 pbr-1.8.1 pika-0.10.0 pika-pool-0.1.3 positional-1.0.1 psutil-1.2.1 pyasn1-0.1.9 pycadf-2.2.0 pycparser-2.14 pycrypto-2.6.1 pyinotify-0.9.6 pymysql-0.7.2 pyparsing-2.1.0 python-cinderclient-1.6.0 python-dateutil-2.5.0 python-editor-0.5 python-glanceclient-2.0.1 python-ironicclient-1.3.1 python-keystoneclient-2.3.1 python-memcached-1.57 python-neutronclient-4.1.1 python-novaclient-3.3.2 python-openstackclient-2.3.0 pytz-2015.7 repoze.lru-0.6 requests-2.9.1 requestsexceptions-1.1.3 retrying-1.3.3 rfc3986-0.3.1 simplejson-3.8.2 six-1.10.0 sqlalchemy-migrate-0.10.0 sqlparse-0.1.18 stevedore-1.12.0 unicodecsv-0.14.1 virtualenv-14.0.6 virtualenv-tools-1.0 warlock-1.2.0 websockify-0.8.0 wrapt-1.10.6
FATAL: all hosts have already failed -- aborting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment