DEVX-1: Extract reusable dev/CI tools from GRM into devx package #1

Merged
emil merged 435 commits from DEVX-1-fix-ci-python3 into master 2026-06-22 15:52:46 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 4bb50bed58 - Show all commits
+2
View File
@@ -13,6 +13,8 @@ classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
# All dependencies are pinned to exact versions for full reproducibility.
# Update pinned versions in a dedicated PR with verification.
dependencies = [
"requests==2.34.2",
"python-dotenv==1.2.2",
+1 -1
View File
@@ -348,7 +348,7 @@ def collect_quality(repo_root: Path) -> dict[str, str | int]:
([sys.executable, "-m", "pyright"], "pyright"),
([sys.executable, "-m", "bandit", "-r", "src/"], "bandit"),
]:
rc, _, stderr = run_command(cmd, cwd=repo_root)
rc, _stdout, stderr = run_command(cmd, cwd=repo_root)
if rc == 0:
results.append(True)
tool_names.append(f"{name}: pass")