From 91a17869b0bda7f0b1d2c7e18c32a154deae5db8 Mon Sep 17 00:00:00 2001 From: Brian Munkholm Date: Tue, 10 Jun 2025 14:03:58 +0200 Subject: [PATCH] CI: Just build with one Python version Is there any reason to build with multiple Python versions? --- .github/workflows/docs.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5b0bccc..2fb3400 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -15,20 +15,19 @@ concurrency: jobs: documentation: - name: Build docs on ${{ matrix.os }} using Python ${{ matrix.python-version }} + name: Build docs on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: ["ubuntu-latest", "macos-latest"] - python-version: ["3.10", "3.11"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: '3.12' - name: Build docs run: | cd docs && make check