Skip to content

Commit a1e9fc2

Browse files
authored
drop support for very old versions of sphinx (#138)
* drop support for `sphinx<5.3` (released in Oct 2022) * stop testing `sphinx<5.3` * remove the obsolete excludes
1 parent 0c4916a commit a1e9fc2

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
python-version: ["3.9", "3.10", "3.11"]
18-
sphinx-version: ["3.5", "4.5", "5.0", "5.1", "5.2", "5.3", "6.0", "6.1"]
19-
exclude:
20-
# sphinx versions incompatible with python 3.10
21-
- python-version: "3.10"
22-
sphinx-version: "3.5"
23-
- python-version: "3.11"
24-
sphinx-version: "3.5"
18+
sphinx-version: ["5.3", "6.0", "6.1"]
2519

2620
steps:
2721
- name: checkout the repository

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
readme = "README.rst"
99
requires-python = ">=3.9"
1010
dependencies = [
11-
"sphinx >= 3.5",
11+
"sphinx >= 5.3",
1212
]
1313
dynamic = ["version"]
1414

0 commit comments

Comments
 (0)