From 9a74d5c1c7dd45849a4cc7749bb611e04cb4988b Mon Sep 17 00:00:00 2001 From: mzr1996 Date: Thu, 26 Aug 2021 15:14:12 +0800 Subject: [PATCH 1/3] Add PyTorch 1.9 build workflow, and remove some CI. --- .github/workflows/build.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f70db08370..603eeae0aec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: python-version: [3.7] - torch: [1.3.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0] + torch: [1.3.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0] include: - torch: 1.3.0 torchvision: 0.4.2 @@ -36,20 +36,8 @@ jobs: torchvision: 0.6.0 - torch: 1.6.0 torchvision: 0.7.0 - - torch: 1.6.0 - torchvision: 0.7.0 - python-version: 3.6 - - torch: 1.6.0 - torchvision: 0.7.0 - python-version: 3.8 - - torch: 1.7.0 - torchvision: 0.8.1 - - torch: 1.7.0 - torchvision: 0.8.1 - python-version: 3.6 - torch: 1.7.0 torchvision: 0.8.1 - python-version: 3.8 - torch: 1.8.0 torchvision: 0.9.0 - torch: 1.8.0 @@ -58,6 +46,14 @@ jobs: - torch: 1.8.0 torchvision: 0.9.0 python-version: 3.8 + - torch: 1.9.0 + torchvision: 0.10.0 + - torch: 1.9.0 + torchvision: 0.10.0 + python-version: 3.6 + - torch: 1.9.0 + torchvision: 0.10.0 + python-version: 3.8 steps: - uses: actions/checkout@v2 From 39dd81d3fcf8a0bf4655b3be4fb4f6d3c6ffee89 Mon Sep 17 00:00:00 2001 From: mzr1996 Date: Thu, 26 Aug 2021 15:18:46 +0800 Subject: [PATCH 2/3] Add Python 3.9 CI --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 603eeae0aec..09be56dbb7e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,6 +46,9 @@ jobs: - torch: 1.8.0 torchvision: 0.9.0 python-version: 3.8 + - torch: 1.8.0 + torchvision: 0.9.0 + python-version: 3.9 - torch: 1.9.0 torchvision: 0.10.0 - torch: 1.9.0 @@ -54,6 +57,9 @@ jobs: - torch: 1.9.0 torchvision: 0.10.0 python-version: 3.8 + - torch: 1.9.0 + torchvision: 0.10.0 + python-version: 3.9 steps: - uses: actions/checkout@v2 From 21c2f0e5c4d9b029b2c1bb2c510317b7e1559e8e Mon Sep 17 00:00:00 2001 From: mzr1996 Date: Thu, 26 Aug 2021 15:23:02 +0800 Subject: [PATCH 3/3] Show Python 3.9 support. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 340996e8067..a9d1479638a 100644 --- a/setup.py +++ b/setup.py @@ -166,6 +166,7 @@ def add_mim_extention(): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], license='Apache License 2.0', tests_require=parse_requirements('requirements/tests.txt'),