From 8ec661d202879874aeb4e7ab5260d9da6379084b Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 9 May 2025 01:29:24 +0200 Subject: [PATCH 1/2] Don't build EOL Python 3.8 version docs --- .github/workflows/update-lint-and-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-lint-and-build.yml b/.github/workflows/update-lint-and-build.yml index f6ac8f983..97b464f2a 100644 --- a/.github/workflows/update-lint-and-build.yml +++ b/.github/workflows/update-lint-and-build.yml @@ -93,7 +93,7 @@ jobs: strategy: fail-fast: false matrix: - version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9, 3.8] + version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9] format: [html, latex, epub] needs: ['update-translation'] steps: @@ -125,7 +125,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9, 3.8] + version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9] needs: ['build-translation'] steps: - uses: actions/download-artifact@master From ea6b14036177831fd87aef4d9b6695a4b7b12a36 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 9 May 2025 01:35:20 +0200 Subject: [PATCH 2/2] Rename steps for readability in Actions view --- .github/workflows/update-lint-and-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update-lint-and-build.yml b/.github/workflows/update-lint-and-build.yml index 97b464f2a..2190a5491 100644 --- a/.github/workflows/update-lint-and-build.yml +++ b/.github/workflows/update-lint-and-build.yml @@ -9,7 +9,7 @@ on: workflow_dispatch: jobs: - update-translation: + update: runs-on: ubuntu-latest strategy: fail-fast: false @@ -75,7 +75,7 @@ jobs: fail-fast: false matrix: version: [3.14, 3.13, 3.12, 3.11] - needs: ['update-translation'] + needs: ['update'] continue-on-error: true steps: - uses: actions/setup-python@master @@ -88,14 +88,14 @@ jobs: - uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0 - run: sphinx-lint - build-translation: + build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9] format: [html, latex, epub] - needs: ['update-translation'] + needs: ['update'] steps: - uses: actions/setup-python@master with: @@ -126,7 +126,7 @@ jobs: strategy: matrix: version: [3.14, 3.13, 3.12, 3.11, '3.10', 3.9] - needs: ['build-translation'] + needs: ['build'] steps: - uses: actions/download-artifact@master with: @@ -144,7 +144,7 @@ jobs: strategy: matrix: version: [3.14] - needs: ['build-translation'] + needs: ['build'] continue-on-error: true steps: - uses: actions/download-artifact@master