@@ -14,7 +14,7 @@ pipeline {
14
14
steps {
15
15
checkout scm
16
16
sh ' rm -rf env'
17
- sh ' /usr/bin/python3 -m venv env'
17
+ sh ' /usr/bin/python3.11 -m venv env'
18
18
sh ' env/bin/python -m pip install -U mypy flake8'
19
19
sh ' find tests -name "*.py" | xargs env/bin/mypy --ignore-missing-imports'
20
20
sh ' find src -name "*.py" | xargs env/bin/mypy --ignore-missing-imports'
@@ -27,7 +27,7 @@ pipeline {
27
27
checkout scm
28
28
sh '''
29
29
rm -rf env
30
- /usr/bin/python3 -m venv env
30
+ /usr/bin/python3.11 -m venv env
31
31
source env/bin/activate
32
32
python -m pip install -U -e .
33
33
@@ -41,7 +41,7 @@ pipeline {
41
41
checkout scm
42
42
sh '''
43
43
rm -rf env
44
- /usr/bin/python3 -m venv env
44
+ /usr/bin/python3.11 -m venv env
45
45
source env/bin/activate
46
46
python -m pip install -U -e .
47
47
@@ -55,7 +55,7 @@ pipeline {
55
55
checkout scm
56
56
sh '''
57
57
rm -rf env
58
- /usr/bin/python3 -m venv env
58
+ /usr/bin/python3.11 -m venv env
59
59
source env/bin/activate
60
60
python -m pip install -U -e .
61
61
@@ -69,7 +69,7 @@ pipeline {
69
69
checkout scm
70
70
sh '''
71
71
rm -rf env
72
- /usr/bin/python3 -m venv env
72
+ /usr/bin/python3.11 -m venv env
73
73
source env/bin/activate
74
74
python -m pip install -U -e .
75
75
@@ -83,7 +83,7 @@ pipeline {
83
83
checkout scm
84
84
sh '''
85
85
rm -rf env
86
- /usr/bin/python3 -m venv env
86
+ /usr/bin/python3.11 -m venv env
87
87
source env/bin/activate
88
88
python -m pip install -U -e .
89
89
@@ -97,7 +97,7 @@ pipeline {
97
97
checkout scm
98
98
sh '''
99
99
rm -rf env
100
- /usr/bin/python3 -m venv env
100
+ /usr/bin/python3.11 -m venv env
101
101
source env/bin/activate
102
102
python -m pip install -U -e .
103
103
@@ -112,7 +112,7 @@ pipeline {
112
112
checkout scm
113
113
sh '''
114
114
rm -rf env
115
- /usr/bin/python3 -m venv env
115
+ /usr/bin/python3.11 -m venv env
116
116
source env/bin/activate
117
117
python -m pip install -U -e .
118
118
0 commit comments