Skip to content

Commit f4b92fc

Browse files
committed
reduce test matrix again
1 parent dc36ddc commit f4b92fc

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/python-app.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
matrix:
3434
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
3535
sphinx-version: [
36-
"7.0.*", "7.1.*", "7.2.*",
37-
"6.0.*",
38-
"5.0.*",
39-
"4.5.*"
36+
"7.0.*", # possible range: 7.0.0 - 7.4.7
37+
"6.0.*", # possible range: 6.0.0 - 6.2.1
38+
"5.0.*", # possible range: 5.0.0 - 5.3.0
39+
"4.5.*" # possible range: 4.5.0, also latest that supports py3.8
4040
]
41-
exclude:
42-
- python-version: "3.8"
43-
sphinx-version: "7.2.*"
41+
include:
42+
- python-version: "3.9"
43+
sphinx-version: "7.2.*" # latest version that supports py3.9
4444
uses: ./.github/workflows/build.yml
4545
with:
4646
python-version: ${{ matrix.python-version }}
@@ -62,7 +62,7 @@ jobs:
6262
matrix:
6363
python-version: [ "3.8", "3.9" ]
6464
sphinx-version: [
65-
"4.4.*", "4.3.*", "4.2.*", "4.1.*", "4.0.*"
65+
"4.0.*" # possible range: 4.0.0 - 4.4.0
6666
]
6767
uses: ./.github/workflows/build.yml
6868
with:
@@ -85,8 +85,11 @@ jobs:
8585
matrix:
8686
python-version: [ "3.7", "3.8", "3.9" ]
8787
sphinx-version: [
88-
"3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*",
88+
"3.0.*", # possible range: 3.0.0 - 3.5.4
8989
]
90+
include:
91+
- python-version: "3.7"
92+
sphinx-version: "3.5.*" # latest version that supports py3.7
9093
uses: ./.github/workflows/build.yml
9194
with:
9295
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)