Use pip instead of legacy install for sip.

This commit is contained in:
Mikaël Capelle
2023-07-02 14:04:21 +02:00
parent a2e9b63b65
commit 25bcd55b3b
+5 -2
View File
@@ -164,8 +164,11 @@ void sip::build()
{
run_tool(mob::python()
.root(source_path())
.arg("setup.py")
.arg("install"));
.arg("-m")
.arg("pip")
.arg("install")
.arg("--no-warn-script-location")
.arg("."));
}
void sip::convert_script_file_to_acp(const std::string& filename)