11[tox]
22; If you change the test matrix, also change it in .github/workflows/tests.yml
33envlist =
4+ python2.7-sphinx{1.4,1.8} # Supported by Sphinx 1.0-1.8
45 python3.5-sphinx{1.4,2.0,3.4} # Supported by Sphinx 1.4-3.4
56 python3.6-sphinx{1.5,3.4} # Supported by Sphinx 1.5-4.x
67 python3.7-sphinx{3.4} # Supported by Sphinx 1.8-4.x
@@ -9,6 +10,7 @@ envlist =
910
1011[testenv]
1112basepython =
13+ python2.7: python2.7
1214 python3.5: python3.5
1315 python3.6: python3.6
1416 python3.7: python3.7
@@ -18,19 +20,19 @@ basepython =
1820
1921deps =
2022 pytest
21- sphinx1.4: Sphinx >= 1.4, < 1.5
22- sphinx1.5: Sphinx >= 1.5, < 1.6
23- sphinx1.6: Sphinx >= 1.6, < 1.7
24- sphinx1.7: Sphinx >= 1.7, < 1.8
25- sphinx1.8: Sphinx >= 1.8, < 2.0
26- sphinx2.0: Sphinx >= 2.0, < 2.1
27- sphinx2.1: Sphinx >= 2.1, < 2.2
28- sphinx2.2: Sphinx >= 2.2, < 2.3
29- sphinx2.3: Sphinx >= 2.3, < 2.4
30- sphinx2.4: Sphinx >= 2.4, < 3.0
31- sphinx3.0: Sphinx >= 3.0, < 3.1
32- sphinx3.4: Sphinx >= 3.4, < 4.0
33- sphinx4.0: Sphinx >= 4.0, < 4.1
23+ sphinx1.4: Sphinx >= 1.4, < 1.5 # Supports Python 2.6, 2.7, 3.3, 3.4, 3.5
24+ sphinx1.5: Sphinx >= 1.5, < 1.6 # Supports Python 2.7, 3.4, 3.5
25+ sphinx1.6: Sphinx >= 1.6, < 1.7 # Supports Python 2.7, 3.4, 3.5, 3.6
26+ sphinx1.7: Sphinx >= 1.7, < 1.8 # Supports Python 2.7, 3.4, 3.5, 3.6
27+ sphinx1.8: Sphinx >= 1.8, < 2.0 # Supports Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8
28+ sphinx2.0: Sphinx >= 2.0, < 2.1 # Supports Python 3.4, 3.5, 3.6, 3.7, 3.8
29+ sphinx2.1: Sphinx >= 2.1, < 2.2 # Supports Python 3.5, 3.6, 3.7, 3.8
30+ sphinx2.2: Sphinx >= 2.2, < 2.3 # Supports Python 3.5, 3.6, 3.7, 3.8
31+ sphinx2.3: Sphinx >= 2.3, < 2.4 # Supports Python 3.5, 3.6, 3.7, 3.8
32+ sphinx2.4: Sphinx >= 2.4, < 3.0 # Supports Python 3.5, 3.6, 3.7, 3.8, 3.9
33+ sphinx3.0: Sphinx >= 3.0, < 3.1 # Supports Python 3.5, 3.6, 3.7, 3.8, 3.9
34+ sphinx3.4: Sphinx >= 3.4, < 4.0 # Supports Python 3.5, 3.6, 3.7, 3.8, 3.9
35+ sphinx4.0: Sphinx >= 4.0, < 4.1 # Supports Python 3.6, 3.7, 3.8, 3.9
3436commands =
3537 pytest -v
3638
0 commit comments