File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ jobs:
23
23
with :
24
24
name : dist
25
25
path : dist
26
- whl_lt_3_10 :
26
+ whl_lt_3_9 :
27
27
name : Build / ${{ matrix.os }} / Python ${{ matrix.major }}.${{ matrix.minor }}
28
28
strategy :
29
29
fail-fast : false
30
30
matrix :
31
31
os : [macOS, Ubuntu, Windows]
32
32
major : [3]
33
- minor : [7, 8, 9 ]
33
+ minor : [7, 8]
34
34
runs-on : ${{ matrix.os }}-latest
35
35
steps :
36
36
- uses : actions/checkout@master
@@ -53,14 +53,14 @@ jobs:
53
53
with :
54
54
name : dist
55
55
path : dist
56
- whl_eq_3_10 :
56
+ whl_gte_3_9 :
57
57
name : Build / ${{ matrix.os }} / Python ${{ matrix.major }}.${{ matrix.minor }}
58
58
strategy :
59
59
fail-fast : false
60
60
matrix :
61
61
os : [macOS, Ubuntu, Windows]
62
62
major : [3]
63
- minor : [10]
63
+ minor : [9, 10]
64
64
runs-on : ${{ matrix.os }}-latest
65
65
steps :
66
66
- uses : actions/checkout@master
86
86
upload :
87
87
name : Publish
88
88
if : github.event_name == 'release' && github.event.action == 'published'
89
- needs : [tar_gz, whl_lt_3_10, whl_eq_3_10 ]
89
+ needs : [tar_gz, whl_lt_3_9, whl_gte_3_9 ]
90
90
runs-on : ubuntu-latest
91
91
steps :
92
92
- uses : actions/download-artifact@master
You can’t perform that action at this time.
0 commit comments