Skip to content

Commit 5f01383

Browse files
committed
Add testing for Sphinx 8
Remove pin to Sphinx <7.3 since Sphinx 7.4 fixed issue Test Python 3.8 and 3.9 only on supported Sphinx Versions
1 parent 9469c4f commit 5f01383

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,14 @@ jobs:
6868
strategy:
6969
fail-fast: false
7070
matrix:
71-
python-version: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12']
72-
sphinx-version: ['>=5,<6', '>=6a0,<7', '>=7,<7.3']
71+
python-version: ['pypy3.10', '3.8', '3.9', '3.10', '3.11', '3.12']
72+
sphinx-version: ['>=5,<6', '>=6a0,<7', '>=7,<8', '>=8,<9']
7373
os: [windows-latest, macos-latest, ubuntu-latest]
74+
exclude:
75+
- python-version: '3.8'
76+
sphinx-version: '>=8,<9'
77+
- python-version: '3.9'
78+
sphinx-version: '>=8,<9'
7479
steps:
7580
- uses: actions/checkout@v4
7681
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)