Skip to content

Commit 96c5c2e

Browse files
authored
Merge pull request #83 from lafrech/sphinx_v6
Allow Sphinx v6
2 parents 27b7e1b + 777f5c8 commit 96c5c2e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/python-app.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9"]
17+
python-version: ["3.8", "3.9"]
1818
sphinx-version: [
19-
"",
19+
"6.0.*",
2020
"5.0.*",
2121
"4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*",
2222
"3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*",
2323
]
2424
include:
25+
- python-version: "3.7"
26+
sphinx-version: ""
27+
- python-version: "3.7"
28+
sphinx-version: "3.5"
2529
- python-version: "3.10"
2630
sphinx-version: ""
2731
- python-version: "3.10"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030

3131
requires-python = '>= 3.7'
3232
dependencies = [
33-
'Sphinx >= 2.2, < 6.0',
33+
'Sphinx >= 2.2, < 7.0',
3434
]
3535

3636
[tool.setuptools]

0 commit comments

Comments
 (0)