File tree 1 file changed +1
-16
lines changed
1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -246,17 +246,6 @@ def _build(self, base_path):
246
246
self ._pip_build (base_path )
247
247
LOG .debug ("Dependencies build finished" )
248
248
249
- @staticmethod
250
- def _update_pip_command ():
251
- return [
252
- "python" ,
253
- "-m" ,
254
- "pip" ,
255
- "install" ,
256
- "--upgrade" ,
257
- "pip" ,
258
- ]
259
-
260
249
@staticmethod
261
250
def _make_pip_command (base_path ):
262
251
return [
@@ -280,11 +269,7 @@ def _get_plugin_information() -> Dict:
280
269
def _docker_build (cls , external_path ):
281
270
internal_path = PurePosixPath ("/project" )
282
271
command = (
283
- '/bin/bash -c "'
284
- + " " .join (cls ._update_pip_command ())
285
- + " && "
286
- + " " .join (cls ._make_pip_command (internal_path ))
287
- + '"'
272
+ '/bin/bash -c "' + " " .join (cls ._make_pip_command (internal_path )) + '"'
288
273
)
289
274
LOG .debug ("command is '%s'" , command )
290
275
You can’t perform that action at this time.
0 commit comments