From 57dce3c68fb63403be15e20f769ba7c38ba26537 Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Fri, 30 Aug 2019 00:48:32 +0530 Subject: Python: Upgrade Python version from 3.4 to 3.6 This patch upgrade python version from 3.4 to 3.6 for the following systems. Centos rhel - 7.2, 7.3 and 7.5 ubuntu For fedora and opensuse - no specific option available. SLES is already using 3.6 Signed-off-by: Sridhar K. N. Rao Change-Id: Ib1a1cb04441c8fe53339f7f9a66e0266d6ceefe0 --- systems/rhel/7.5/prepare_python_env.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'systems/rhel/7.5/prepare_python_env.sh') diff --git a/systems/rhel/7.5/prepare_python_env.sh b/systems/rhel/7.5/prepare_python_env.sh index 047d6961..b7506568 100755 --- a/systems/rhel/7.5/prepare_python_env.sh +++ b/systems/rhel/7.5/prepare_python_env.sh @@ -21,8 +21,8 @@ if [ -d "$VSPERFENV_DIR" ] ; then exit fi -scl enable rh-python34 " -virtualenv "$VSPERFENV_DIR" --python /opt/rh/rh-python34/root/usr/bin/python3 +scl enable rh-python36 " +virtualenv "$VSPERFENV_DIR" --python /opt/rh/rh-python36/root/usr/bin/python3 source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt " -- cgit 1.2.3-korg tion value='stable/brahmaputra'>stable/brahmaputra **THIS REPO HAS BEEN ARCHIVED. SEE vineperf**Grokmirror user
summaryrefslogtreecommitdiffstats
blob: eb963d6f5deea0a421d7f8d73fdc0dec1ce89f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101