From 6dcf6d064514394c90d26bb03de56d9b16ac4756 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 6 Jul 2026 02:28:12 -0700 Subject: [PATCH] ci: install circuitforge-core before requirements.txt on GitHub CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches snipe's pattern — pip resolves the git+ VCS dep more reliably when it's pre-installed as a separate step rather than mixed into a full requirements.txt solve. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2038336..94e4a67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,9 @@ jobs: python-version: '3.12' cache: pip + - name: Install circuitforge-core + run: pip install git+https://git.opensourcesolarpunk.com/Circuit-Forge/circuitforge-core.git@main + - name: Install dependencies run: pip install -r requirements.txt