From de6cb8c3c99f16a746b135a787c81f444a6ef896 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Sat, 24 Aug 2024 17:35:59 -0700 Subject: [PATCH] try fix action matrix --- .github/workflows/test.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 32bf5db..5ed9a89 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,20 +51,20 @@ jobs: matrix: python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.0-rc.1'] sphinx-version: - - '6.0' - - '7.0' - - '8' + - '^6.0' + - '^7.0' + - '>=8' exclude: - python-version: '3.12' - sphinx-version: '7.0' + sphinx-version: '^7.0' - python-version: '3.12' - sphinx-version: '6.0' + sphinx-version: '^6.0' - python-version: '3.13.0-rc.1' - sphinx-version: '7.0' + sphinx-version: '^7.0' - python-version: '3.13.0-rc.1' - sphinx-version: '6.0' + sphinx-version: '^6.0' - python-version: '3.9' - sphinx-version: '8' + sphinx-version: '>=8' steps: - uses: actions/checkout@v4 @@ -83,7 +83,7 @@ jobs: poetry config virtualenvs.in-project true poetry run pip install --upgrade pip poetry install -E html -E png -E pdf - poetry run pip install -U "Sphinx~=${{ matrix.sphinx-version }}" + poetry run pip install -U "Sphinx${{ matrix.sphinx-version }}" - name: Install Emacs if: ${{ github.event.inputs.debug == 'on' }}