We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 077b6c2 commit 07cbad7Copy full SHA for 07cbad7
scripts/dobuild.py
@@ -32,11 +32,8 @@
32
Qtinstallpath = f"/home/runner/work/PyElaWidgetTools/Qt/{qtversion}/{qtarchdir}"
33
qmake = f"{Qtinstallpath}/bin/qmake"
34
35
-for _dir, _, _fs in os.walk(f"/opt/hostedtoolcache/Python/{pythonversion}/{arch}"):
36
- for _f in _fs:
37
- print(os.path.join(_dir, _f), pyPath)
38
39
-subprocess.run(f"{pyPath} -m pip install --upgrade pip")
+subprocess.run(f"-m pip install --upgrade pip", executable=pyPath)
40
if binding.lower().startswith("pyqt"):
41
if qtversion.startswith("6"):
42
subprocess.run(f"{pyPath} -m pip install pyqt6==6.6 PyQt-builder sip")
0 commit comments