Skip to content

Commit ece1430

Browse files
committed
Enable python 3.9 build on macOS
This PR enables python 3.9 build on macOS, as tf-nightly is available with macOS now. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
1 parent 7e2eb09 commit ece1430

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/build.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
runs-on: macos-latest
148148
strategy:
149149
matrix:
150-
python: ['3.6', '3.7', '3.8']
150+
python: ['3.6', '3.7', '3.8', '3.9']
151151
steps:
152152
- uses: actions/checkout@v2
153153
- uses: actions/download-artifact@v1
@@ -184,7 +184,7 @@ jobs:
184184
runs-on: macos-latest
185185
strategy:
186186
matrix:
187-
python: ['3.7', '3.8']
187+
python: ['3.7', '3.8', '3.9']
188188
steps:
189189
- uses: actions/checkout@v2
190190
- uses: actions/download-artifact@v1
@@ -451,6 +451,10 @@ jobs:
451451
with:
452452
name: macOS-3.8-wheel
453453
path: macOS-3.8-wheel
454+
- uses: actions/download-artifact@v1
455+
with:
456+
name: macOS-3.9-wheel
457+
path: macOS-3.9-wheel
454458
- uses: actions/download-artifact@v1
455459
with:
456460
name: Linux-3.6-wheel
@@ -489,6 +493,7 @@ jobs:
489493
cp macOS-3.6-wheel/*.whl wheelhouse/
490494
cp macOS-3.7-wheel/*.whl wheelhouse/
491495
cp macOS-3.8-wheel/*.whl wheelhouse/
496+
cp macOS-3.9-wheel/*.whl wheelhouse/
492497
cp Linux-3.6-wheel/*.whl wheelhouse/
493498
cp Linux-3.7-wheel/*.whl wheelhouse/
494499
cp Linux-3.8-wheel/*.whl wheelhouse/
@@ -549,7 +554,7 @@ jobs:
549554
runs-on: macos-latest
550555
strategy:
551556
matrix:
552-
python: ['3.6', '3.7', '3.8']
557+
python: ['3.6', '3.7', '3.8', '3.9']
553558
steps:
554559
- uses: actions/download-artifact@v1
555560
with:
@@ -676,6 +681,10 @@ jobs:
676681
with:
677682
name: macOS-3.8-nightly
678683
path: macOS-3.8-nightly
684+
- uses: actions/download-artifact@v1
685+
with:
686+
name: macOS-3.9-nightly
687+
path: macOS-3.9-nightly
679688
- uses: actions/download-artifact@v1
680689
with:
681690
name: Linux-3.6-nightly
@@ -714,6 +723,7 @@ jobs:
714723
cp macOS-3.6-nightly/*.whl dist/
715724
cp macOS-3.7-nightly/*.whl dist/
716725
cp macOS-3.8-nightly/*.whl dist/
726+
cp macOS-3.9-nightly/*.whl dist/
717727
cp Linux-3.6-nightly/*.whl dist/
718728
cp Linux-3.7-nightly/*.whl dist/
719729
cp Linux-3.8-nightly/*.whl dist/

0 commit comments

Comments
 (0)