Browse code

Merge "Enable openSUSE to work in Python 3.x environments"

Jenkins authored on 2017/03/28 05:58:45
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