From 6ee5cde4bbcaeb95d2cce9acb2d038cdb3570d1e Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 27 May 2025 14:48:49 +1000 Subject: [PATCH] ci: do not install project when checking classifiers --- .github/workflows/python-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-checks.yml b/.github/workflows/python-checks.yml index 851a9a2b91..39ff56eab8 100644 --- a/.github/workflows/python-checks.yml +++ b/.github/workflows/python-checks.yml @@ -69,7 +69,7 @@ jobs: - name: check pypi classifiers if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }} - run: uv run scripts/check_classifiers.py ./pyproject.toml + run: uv run --no-project scripts/check_classifiers.py ./pyproject.toml - name: ruff check if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}