From 79cd1fb27a80c6223b3e1d6272532df934e4e049 Mon Sep 17 00:00:00 2001 From: dfguerrerom Date: Fri, 3 Apr 2026 11:08:15 +0200 Subject: [PATCH] Bump scheduled build workflow to Python 3.10 Python 3.8 can no longer resolve the unpinned Sphinx dependency since newer Sphinx versions require Python >=3.10. Aligns with the Python version already used in unit.yml. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f97297174..bca6c72f7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,10 @@ jobs: with: ref: ${{ github.head_ref }} - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: "3.8" + python-version: "3.10" - name: Install dependencies run: python -m pip install nox