Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ jobs:
python-version: '3.12'
toxenv: py312-test-sphinx80
- os: ubuntu-latest
python-version: '3.12'
toxenv: py312-test-sphinxdev
python-version: '3.13'
toxenv: py313-test-sphinxdev

# MacOS X - just the stable and dev
- os: macos-latest
python-version: '3.10'
toxenv: py310-test-sphinx80-clocale
- os: macos-latest
python-version: '3.11'
toxenv: py311-test-sphinxdev
python-version: '3.13'
toxenv: py313-test-sphinxdev

# Windows - just the oldest, stable, and dev
- os: windows-latest
Expand All @@ -68,8 +68,8 @@ jobs:
python-version: '3.10'
toxenv: py310-test-sphinx80
- os: windows-latest
python-version: '3.11'
toxenv: py311-test-sphinxdev
python-version: '3.13'
toxenv: py313-test-sphinxdev

steps:
- uses: actions/checkout@v4
Expand All @@ -79,6 +79,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install graphviz on Linux
if: startsWith(matrix.os, 'ubuntu')
run: |
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312}-test-sphinx{_oldest,53,62,70,71,72,80,dev}{-cov}{-clocale}
envlist = py{38,39,310,311,312,313}-test-sphinx{_oldest,53,62,70,71,72,80,dev}{-cov}{-clocale}
requires = pip >= 18.0
setuptools >= 30.3.0
isolated_build = true
Expand Down
Loading