From e36dbbcc5b7528cd2546889ba356de741805ff20 Mon Sep 17 00:00:00 2001 From: Gavin Sharp Date: Mon, 15 Jun 2026 13:27:15 -0400 Subject: [PATCH] ci: pin python-version on compile job's setup-python step The compile job was the only setup-python step without an explicit python-version, producing a warning that the version of Python in PATH would be used. Pin it to "3.10" to match the test and publish jobs and the project's minimum supported version (python = "^3.10"). Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c393551..d02ebd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,8 @@ jobs: - name: Set up python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 + with: + python-version: "3.10" - name: Bootstrap poetry run: |