1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Stuart Prescott <stuart@debian.org>
Date: Sun, 13 Jul 2025 02:07:48 +1000
Subject: Use python3 as executable
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 49a7e34..7318268 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -113,7 +113,7 @@ artifacts = [
[[tool.hatch.build.targets.wheel.hooks.build-scripts.scripts]]
# Perform Qt UI conversion steps (uic, rcc etc)
commands = [
- "python src/sas/qtgui/convertUI.py",
+ "python3 src/sas/qtgui/convertUI.py",
]
# out_dir = "GUI-output"
artifacts = [
|