Browse code

Enable openSUSE to work in Python 3.x environments

Add packages required to run devstack with USE_PYTHON3=True.

Change-Id: Iee43c9335bd82c10cfaeffb02d1d99290c34bb83

Armando Migliaccio authored on 2017/03/21 14:27:20
Showing 1 changed files
... ...
@@ -553,6 +553,8 @@ function python3_enabled {
553 553
 function install_python3 {
554 554
     if is_ubuntu; then
555 555
         apt_get install python${PYTHON3_VERSION} python${PYTHON3_VERSION}-dev
556
+    elif is_suse; then
557
+        install_package python3-devel python3-dbm
556 558
     fi
557 559
 }
558 560