From 0dcaf6ccb46dc0354cbf8d18616d3bd4fa55dba8 Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Wed, 23 Jul 2025 09:21:45 +1200 Subject: [PATCH] Don't use `doc` group in testing CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e01a057..0dab16d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - name: Setup dependencies run: | uv python pin ${{ matrix.python-version }} - uv export --no-managed-python --resolution ${{ matrix.resolution }} > ci-requirements.txt + uv export --no-managed-python --no-group doc --resolution ${{ matrix.resolution }} > ci-requirements.txt uv pip install --system -r ci-requirements.txt - name: Run pre-commit