Skip to content

Commit 1e60071

Browse files
Require sphinx 6 (#530)
1 parent c26538c commit 1e60071

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/test.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,7 @@ jobs:
1818
os: [Ubuntu]
1919
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020
sphinx-version:
21-
[
22-
"sphinx==5.0",
23-
"sphinx==5.3",
24-
"sphinx==6.0",
25-
"sphinx==6.2",
26-
"sphinx>=7.0",
27-
]
21+
["sphinx==6.0", "sphinx==6.2", "sphinx==7.0", "sphinx>=7.2"]
2822
steps:
2923
- uses: actions/checkout@v4
3024

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ classifiers = [
2626
'Programming Language :: Python :: 3.12',
2727
]
2828
dependencies = [
29-
'sphinx>=5',
30-
'Jinja2>=2.10',
29+
'sphinx>=6',
3130
'tabulate>=0.8.10',
3231
"tomli>=1.1.0;python_version<'3.11'",
3332
]

requirements/default.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Generated via tools/generate_requirements.py and pre-commit hook.
22
# Do not edit this file; modify pyproject.toml instead.
3-
sphinx>=5
4-
Jinja2>=2.10
3+
sphinx>=6
54
tabulate>=0.8.10
65
tomli>=1.1.0;python_version<'3.11'

0 commit comments

Comments
 (0)