From 248f7115715fff3f65c5f92360a2d7a2bd962466 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sun, 15 Feb 2026 02:14:11 -0600 Subject: [PATCH] fix(#370): add Gitea PyPI registry to coordinator CI install step The mosaicstack-telemetry package is hosted on the Gitea PyPI registry. CI pip install needs --extra-index-url to find it. Refs #370 Co-Authored-By: Claude Opus 4.6 --- .woodpecker/coordinator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/coordinator.yml b/.woodpecker/coordinator.yml index 8bce34e..1af4c5f 100644 --- a/.woodpecker/coordinator.yml +++ b/.woodpecker/coordinator.yml @@ -30,7 +30,7 @@ steps: - python -m venv venv - . venv/bin/activate - pip install --no-cache-dir --upgrade "pip>=25.3" - - pip install --no-cache-dir -e ".[dev]" + - pip install --no-cache-dir --extra-index-url https://git.mosaicstack.dev/api/packages/mosaic/pypi/simple/ -e ".[dev]" - pip install --no-cache-dir bandit pip-audit ruff-check: