Skip to content

Commit

Permalink
Merge pull request #79 from EpicWink/sphinx-5
Browse files Browse the repository at this point in the history
Allow Sphinx v5
  • Loading branch information
Chilipp committed Jul 25, 2022
2 parents 2839945 + 71bf369 commit c3689c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/python-app.yml
Expand Up @@ -15,7 +15,12 @@ jobs:
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
sphinx-version: ["", "4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*", "3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*"]
sphinx-version: [
"",
"5.0.*",
"4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*",
"3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*",
]
include:
- python-version: "3.10"
sphinx-version: ""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -38,7 +38,7 @@ def readme():
license="Apache-2.0",
packages=find_packages(exclude=['docs', 'tests*', 'examples']),
install_requires=[
'Sphinx>=2.2,<5.0',
'Sphinx>=2.2,<6.0',
],
setup_requires=pytest_runner,
tests_require=['pytest'],
Expand Down

0 comments on commit c3689c9

Please sign in to comment.