Skip to content

Commit 5ae6f5e

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Revert "Do not use pip 10 or higher""
2 parents b9dfa46 + 279a758 commit 5ae6f5e

File tree

6 files changed

+3
-11
lines changed

6 files changed

+3
-11
lines changed

.zuul.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,14 +320,12 @@
320320
dstat: true
321321
etcd3: true
322322
mysql: true
323-
peakmem_tracker: true
324323
rabbit: true
325324
group-vars:
326325
subnode:
327326
devstack_services:
328327
# Shared services
329328
dstat: true
330-
peakmem_tracker: true
331329
devstack_localrc:
332330
# Multinode specific settings
333331
HOST_IP: "{{ hostvars[inventory_hostname]['nodepool']['private_ipv4'] }}"
@@ -394,7 +392,6 @@
394392
dstat: true
395393
etcd3: true
396394
mysql: true
397-
peakmem_tracker: true
398395
rabbit: true
399396
tls-proxy: true
400397
# Keystone services
@@ -450,7 +447,6 @@
450447
# This list replaces the test-matrix.
451448
# Shared services
452449
dstat: true
453-
peakmem_tracker: true
454450
tls-proxy: true
455451
# Nova services
456452
n-cpu: true

files/debs/dstat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
dstat
2-
python-psutil

files/rpms-suse/dstat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
dstat
2-
python-psutil

files/rpms/dstat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
dstat # not:f29
22
pcp-system-tools # dist:f29
3-
python-psutil

tools/cap-pip.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

tools/install_pip.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ function install_get_pip {
8989
die $LINENO "Download of get-pip.py failed"
9090
touch $LOCAL_PIP.downloaded
9191
fi
92-
sudo -H -E python $LOCAL_PIP -c $TOOLS_DIR/cap-pip.txt
93-
if python3_enabled; then
94-
sudo -H -E python${PYTHON3_VERSION} $LOCAL_PIP -c $TOOLS_DIR/cap-pip.txt
92+
sudo -H -E python${PYTHON3_VERSION} $LOCAL_PIP
93+
if ! python3_enabled; then
94+
sudo -H -E python $LOCAL_PIP
9595
fi
9696
}
9797

0 commit comments

Comments
 (0)