Skip to content

Commit 36ce050

Browse files
authored
Merge pull request #86 from lafrech/sphinx_7_py_3.11
Support Sphinx 7 and Python 3.11
2 parents 8ce1412 + c8fd99f commit 36ce050

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/python-app.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
matrix:
1717
python-version: ["3.8", "3.9"]
1818
sphinx-version: [
19+
"7.0.*",
1920
"6.0.*",
2021
"5.0.*",
2122
"4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*",
@@ -30,6 +31,10 @@ jobs:
3031
sphinx-version: ""
3132
- python-version: "3.10"
3233
sphinx-version: "4.5"
34+
- python-version: "3.11"
35+
sphinx-version: ""
36+
- python-version: "3.11"
37+
sphinx-version: "4.5"
3338

3439
steps:
3540
- uses: actions/checkout@v2

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ classifiers = [
2525
'Programming Language :: Python :: 3.8',
2626
'Programming Language :: Python :: 3.9',
2727
'Programming Language :: Python :: 3.10',
28+
'Programming Language :: Python :: 3.11',
2829
'Operating System :: OS Independent',
2930
]
3031

3132
requires-python = '>= 3.7'
3233
dependencies = [
33-
'Sphinx >= 2.2, < 7.0',
34+
'Sphinx >= 2.2, < 8.0',
3435
]
3536

3637
[tool.setuptools]

0 commit comments

Comments
 (0)