Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
18 changes: 15 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
runs-on: ubuntu-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 @@ -285,10 +285,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python: ['3.7', '3.8']
python: ['3.7', '3.8', '3.9']
exclude:
- os: ubuntu-18.04
python: '3.8'
- os: ubuntu-18.04
python: '3.9'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yongtang is there a reference for this unstable combination?

- os: ubuntu-20.04
python: '3.7'
steps:
Expand Down Expand Up @@ -469,6 +471,10 @@ jobs:
with:
name: Linux-3.8-wheel
path: Linux-3.8-wheel
- uses: actions/download-artifact@v1
with:
name: Linux-3.9-wheel
path: Linux-3.9-wheel
- uses: actions/download-artifact@v1
with:
name: Windows-3.6-wheel
Expand All @@ -490,6 +496,7 @@ jobs:
cp Linux-3.6-wheel/*.whl wheelhouse/
cp Linux-3.7-wheel/*.whl wheelhouse/
cp Linux-3.8-wheel/*.whl wheelhouse/
cp Linux-3.9-wheel/*.whl wheelhouse/
cp Windows-3.6-wheel/*.whl wheelhouse/
cp Windows-3.7-wheel/*.whl wheelhouse/
cp Windows-3.8-wheel/*.whl wheelhouse/
Expand Down Expand Up @@ -589,7 +596,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04]
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 @@ -685,6 +692,10 @@ jobs:
with:
name: Linux-3.8-nightly
path: Linux-3.8-nightly
- uses: actions/download-artifact@v1
with:
name: Linux-3.9-nightly
path: Linux-3.9-nightly
- uses: actions/download-artifact@v1
with:
name: Windows-3.6-nightly
Expand All @@ -706,6 +717,7 @@ jobs:
cp Linux-3.6-nightly/*.whl dist/
cp Linux-3.7-nightly/*.whl dist/
cp Linux-3.8-nightly/*.whl dist/
cp Linux-3.9-nightly/*.whl dist/
cp Windows-3.6-nightly/*.whl dist/
cp Windows-3.7-nightly/*.whl dist/
cp Windows-3.8-nightly/*.whl dist/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def has_ext_modules(self):
],
keywords="tensorflow io machine learning",
packages=setuptools.find_packages(where=".", exclude=["tests"]),
python_requires=">=3.5, <3.9",
python_requires=">=3.5, <3.10",
install_requires=[package],
package_data={".": ["*.so"],},
project_urls={
Expand Down