We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734102d commit 75c3299Copy full SHA for 75c3299
scripts/dobuild.py
@@ -32,6 +32,10 @@
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(_dir, _f)
38
+
39
subprocess.run(f"{pyPath} -m pip install --upgrade pip")
40
if binding.lower().startswith("pyqt"):
41
if qtversion.startswith("6"):
0 commit comments