Skip to content

Commit

Permalink
try fix action matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Aug 25, 2024
1 parent f0afb23 commit de6cb8c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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' }}
Expand Down

0 comments on commit de6cb8c

Please sign in to comment.