Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: ['3.6', '3.7', '3.8']
python: ['3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v1
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: ['3.7', '3.8']
python: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v1
Expand Down Expand Up @@ -451,6 +451,10 @@ jobs:
with:
name: macOS-3.8-wheel
path: macOS-3.8-wheel
- uses: actions/download-artifact@v1
with:
name: macOS-3.9-wheel
path: macOS-3.9-wheel
- uses: actions/download-artifact@v1
with:
name: Linux-3.6-wheel
Expand Down Expand Up @@ -489,6 +493,7 @@ jobs:
cp macOS-3.6-wheel/*.whl wheelhouse/
cp macOS-3.7-wheel/*.whl wheelhouse/
cp macOS-3.8-wheel/*.whl wheelhouse/
cp macOS-3.9-wheel/*.whl wheelhouse/
cp Linux-3.6-wheel/*.whl wheelhouse/
cp Linux-3.7-wheel/*.whl wheelhouse/
cp Linux-3.8-wheel/*.whl wheelhouse/
Expand Down Expand Up @@ -549,7 +554,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: ['3.6', '3.7', '3.8']
python: ['3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/download-artifact@v1
with:
Expand Down Expand Up @@ -676,6 +681,10 @@ jobs:
with:
name: macOS-3.8-nightly
path: macOS-3.8-nightly
- uses: actions/download-artifact@v1
with:
name: macOS-3.9-nightly
path: macOS-3.9-nightly
- uses: actions/download-artifact@v1
with:
name: Linux-3.6-nightly
Expand Down Expand Up @@ -714,6 +723,7 @@ jobs:
cp macOS-3.6-nightly/*.whl dist/
cp macOS-3.7-nightly/*.whl dist/
cp macOS-3.8-nightly/*.whl dist/
cp macOS-3.9-nightly/*.whl dist/
cp Linux-3.6-nightly/*.whl dist/
cp Linux-3.7-nightly/*.whl dist/
cp Linux-3.8-nightly/*.whl dist/
Expand Down