Skip to content

Commit 7fce62f

Browse files
committed
updated ci to process 3.9, 3.10 together
1 parent 3ced11d commit 7fce62f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
with:
2424
name: dist
2525
path: dist
26-
whl_lt_3_10:
26+
whl_lt_3_9:
2727
name: Build / ${{ matrix.os }} / Python ${{ matrix.major }}.${{ matrix.minor }}
2828
strategy:
2929
fail-fast: false
3030
matrix:
3131
os: [macOS, Ubuntu, Windows]
3232
major: [3]
33-
minor: [7, 8, 9]
33+
minor: [7, 8]
3434
runs-on: ${{ matrix.os }}-latest
3535
steps:
3636
- uses: actions/checkout@master
@@ -53,14 +53,14 @@ jobs:
5353
with:
5454
name: dist
5555
path: dist
56-
whl_eq_3_10:
56+
whl_gte_3_9:
5757
name: Build / ${{ matrix.os }} / Python ${{ matrix.major }}.${{ matrix.minor }}
5858
strategy:
5959
fail-fast: false
6060
matrix:
6161
os: [macOS, Ubuntu, Windows]
6262
major: [3]
63-
minor: [10]
63+
minor: [9, 10]
6464
runs-on: ${{ matrix.os }}-latest
6565
steps:
6666
- uses: actions/checkout@master
@@ -86,7 +86,7 @@ jobs:
8686
upload:
8787
name: Publish
8888
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]
9090
runs-on: ubuntu-latest
9191
steps:
9292
- uses: actions/download-artifact@master

0 commit comments

Comments
 (0)