8000 Add Python 3.13 to the testing matrix (#91) · sphinx-contrib/sphinx-lint@6b070ea · GitHub
[go: up one dir, main page]

Skip to content

Commit 6b070ea

Browse files
ezio-melottihugovk
andauthored
Add Python 3.13 to the testing matrix (#91)
* Add Python 3.13 to the testing matrix * Update Py version to run more tests to 3.13. * Exclude Python 3.13 on Windows in test matrix until regex wheel available --------- Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
1 parent 5b2e1b8 commit 6b070ea

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
matrix:
1616
# when adding new versions, update the one used to test
1717
# friend projects below to the latest one
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20+
exclude:
21+
# TODO Add Windows when regex wheel available for 3.13
22+
- {os: windows-latest, python-version: "3.13"}
2023
steps:
2124
- uses: actions/checkout@v3
2225
- name: Set up Python ${{ matrix.python-version }}
@@ -33,7 +36,7 @@ jobs:
3336
- name: Install sphinx-lint to pull dependencies
3437
run: python -m pip install -v .
3538
- name: Download more tests from friend projects
36-
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
39+
if: matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
3740
run: sh download-more-tests.sh
3841
- name: run tests
3942
run: python -m pytest

0 commit comments

Comments
 (0)
0