Skip to content

Commit 71bf369

Browse files
committed
Allow Sphinx v5
1 parent 2839945 commit 71bf369

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/python-app.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version: ["3.6", "3.7", "3.8", "3.9"]
18-
sphinx-version: ["", "4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*", "3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*"]
18+
sphinx-version: [
19+
"",
20+
"5.0.*",
21+
"4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*",
22+
"3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*",
23+
]
1924
include:
2025
- python-version: "3.10"
2126
sphinx-version: ""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def readme():
3838
license="Apache-2.0",
3939
packages=find_packages(exclude=['docs', 'tests*', 'examples']),
4040
install_requires=[
41-
'Sphinx>=2.2,<5.0',
41+
'Sphinx>=2.2,<6.0',
4242
],
4343
setup_requires=pytest_runner,
4444
tests_require=['pytest'],

0 commit comments

Comments
 (0)