|
@@ -17,11 +17,13 @@ for python >= 3.7, see:
|
|
|
class PluginImpl(plugins.python.PythonPlugin):
|
|
|
def get_build_commands(self) -> List[str]:
|
|
|
cmds = super().get_build_commands()
|
|
|
-
|
|
|
+ cmds.insert(1, 'python3 -m pip install --upgrade pip');
|
|
|
+
|
|
|
for idx, cmd in enumerate(cmds):
|
|
|
|
|
|
if cmd.strip().startswith('[ -f setup.py ]'):
|
|
|
xcmds = cmd.split("&&", 1)
|
|
|
|
|
|
+
|
|
|
cmds[idx] = f"{xcmds[0]} && pip uninstall -y typing uuid && {xcmds[1]}"
|
|
|
return cmds
|