Skip to content

Commit e033d9a

Browse files
committed
2 parents 8eac9f1 + 3fe8c5b commit e033d9a

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/main.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
# required if branches-ignore is supplied (jaraco/skeleton#103)
1111
- '**'
1212
pull_request:
13+
workflow_dispatch:
1314

1415
permissions:
1516
contents: read
@@ -35,7 +36,7 @@ jobs:
3536
matrix:
3637
python:
3738
- "3.8"
38-
- "3.12"
39+
- "3.13"
3940
platform:
4041
- ubuntu-latest
4142
- macos-latest
@@ -47,10 +48,14 @@ jobs:
4748
platform: ubuntu-latest
4849
- python: "3.11"
4950
platform: ubuntu-latest
51+
- python: "3.12"
52+
platform: ubuntu-latest
53+
- python: "3.14"
54+
platform: ubuntu-latest
5055
- python: pypy3.10
5156
platform: ubuntu-latest
5257
runs-on: ${{ matrix.platform }}
53-
continue-on-error: ${{ matrix.python == '3.13' }}
58+
continue-on-error: ${{ matrix.python == '3.14' }}
5459
steps:
5560
- uses: actions/checkout@v4
5661
- name: Setup Python

docs/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import annotations
22

3-
43
extensions = [
54
'sphinx.ext.autodoc',
65
'jaraco.packaging.sphinx',

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ extras =
3131
changedir = docs
3232
commands =
3333
python -m sphinx -W --keep-going . {toxinidir}/build/html
34-
python -m sphinxlint \
35-
# workaround for sphinx-contrib/sphinx-lint#83
36-
--jobs 1
34+
python -m sphinxlint
3735

3836
[testenv:finalize]
3937
description = assemble changelog and tag a release

0 commit comments

Comments
 (0)