Browse code

Merge "Do not remove python-pip package on Fedora-23"

Jenkins authored on 2015/11/13 03:37:30
Showing 1 changed files
... ...
@@ -110,7 +110,11 @@ get_versions
110 110
 # Do pip
111 111
 
112 112
 # Eradicate any and all system packages
113
-uninstall_package python-pip
113
+
114
+# python in f23 depends on the python-pip package
115
+if ! { is_fedora && [[ $DISTRO == "f23" ]]; }; then
116
+    uninstall_package python-pip
117
+fi
114 118
 
115 119
 install_get_pip
116 120