Enable openSUSE to work in Python 3.x environments

Add packages required to run devstack with USE_PYTHON3=True.

Change-Id: Iee43c9335bd82c10cfaeffb02d1d99290c34bb83
This commit is contained in:
Armando Migliaccio 2017-03-20 22:27:20 -07:00
parent fc2919ffdf
commit bacfb94390

View File

@ -553,6 +553,8 @@ function python3_enabled {
function install_python3 {
if is_ubuntu; then
apt_get install python${PYTHON3_VERSION} python${PYTHON3_VERSION}-dev
elif is_suse; then
install_package python3-devel python3-dbm
fi
}