From 14087eb48783ce1e6cb107f4dd6d9bfdc4cd3262 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 20:34:49 +0000 Subject: [PATCH 1/2] Initial plan From 54d7912ed9923652f34edadacb70390987d03b2f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 20:36:07 +0000 Subject: [PATCH 2/2] Fix: Quote Python version string in GitHub Actions workflow The python-version value was being interpreted as 3.1 instead of 3.10 because YAML treats unquoted 3.10 as a float. Adding quotes ensures it's treated as a string. Co-authored-by: AdamRJensen <39184289+AdamRJensen@users.noreply.github.com> --- .github/workflows/sphinx-build-deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sphinx-build-deploy.yaml b/.github/workflows/sphinx-build-deploy.yaml index 334e612..8cb720b 100644 --- a/.github/workflows/sphinx-build-deploy.yaml +++ b/.github/workflows/sphinx-build-deploy.yaml @@ -17,7 +17,7 @@ jobs: - name: Set up Python "3.10" uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: "3.10" - name: Install dependencies run: |