|
@@ -21,10 +21,13 @@ class PluginImpl(plugins.python.PythonPlugin):
|
|
|
|
|
|
|
|
|
for idx, cmd in enumerate(cmds):
|
|
|
+ if cmd.strip().startswith('pip install -c'):
|
|
|
+ cmds[idx] = f"{cmd.strip()} --use-deprecated=legacy-resolver"
|
|
|
|
|
|
- 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
|