Skip to content

Commit c98fbe8

Browse files
authored
Adding some narrative to version limits and consistency between requirements and tox configs
1 parent 885c401 commit c98fbe8

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
os: [ubuntu-latest]
2222
python-version: ["3.10", "3.11", "3.12", "3.13"]
23-
sphinx: ["~=8.0"]
23+
sphinx: ["~=8.0"] # temporary limit, bring it back to newest sphinx once we are sphinx9 compatible
2424
myst-parser: [""] # Newest MyST Parser (any)
2525
include:
2626
# Just check the other platforms once

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ envlist = py313-sphinx8
1616
[testenv]
1717
usedevelop = true
1818

19-
[testenv:py{310,311,312,313}-sphinx{7,8}]
19+
[testenv:py{310,311,312,313}-sphinx{5,6,7,8}]
2020
extras = testing
2121
deps =
22+
sphinx5: sphinx>=5,<6
23+
sphinx6: sphinx>=6,<7
2224
sphinx7: sphinx>=7,<8
2325
sphinx8: sphinx>=8,<9
2426
commands = pytest {posargs}

0 commit comments

Comments
 (0)