From bacfb94390e0680fac13cb7f7236b9d5d0e89b89 Mon Sep 17 00:00:00 2001 From: Armando Migliaccio Date: Mon, 20 Mar 2017 22:27:20 -0700 Subject: [PATCH] Enable openSUSE to work in Python 3.x environments Add packages required to run devstack with USE_PYTHON3=True. Change-Id: Iee43c9335bd82c10cfaeffb02d1d99290c34bb83 --- inc/python | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inc/python b/inc/python index a4819c2d9d..2443c4d465 100644 --- a/inc/python +++ b/inc/python @@ -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 }