1 parent 686f7a2 commit 7c0f29eCopy full SHA for 7c0f29e
2 files changed
.console/log.md
@@ -123,3 +123,6 @@ Added .github/workflows/custodian-audit.yml + .hooks/pre-push.
123
Both run `custodian-multi --fail-on-findings`. CI is the source of
124
truth; pre-push catches regressions before they hit GitHub.
125
126
+
127
+## 2026-05-08 — CI fix: Direct URL pip install syntax
128
.github/workflows/custodian-audit.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Install Custodian
24
run: |
25
python -m pip install --upgrade pip
26
- pip install "git+https://github.com/Velascat/Custodian.git@main#egg=custodian[tools]"
+ pip install "custodian[tools] @ git+https://github.com/Velascat/Custodian.git@main"
27
pip install ruff vulture ty
28
29
- name: Install repo (best-effort, for adapter passes)
0 commit comments