Skip to content

Commit a6ca680

Browse files
wyliericspod
andauthored
adds basic py3.9 tests (#2114)
* adds tests Signed-off-by: Wenqi Li <[email protected]> * temp tests Signed-off-by: Wenqi Li <[email protected]> * temp tests Signed-off-by: Wenqi Li <[email protected]> * torch Signed-off-by: Wenqi Li <[email protected]> * Revert "temp tests" This reverts commit 6a2e7a2. Signed-off-by: Wenqi Li <[email protected]> * Revert "temp tests" This reverts commit 9fc84df. Signed-off-by: Wenqi Li <[email protected]> Co-authored-by: Eric Kerfoot <[email protected]>
1 parent 198cd2f commit a6ca680

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
strategy:
160160
fail-fast: false
161161
matrix:
162-
python-version: [3.6, 3.7]
162+
python-version: [3.6, 3.7, 3.8, 3.9]
163163
timeout-minutes: 40
164164
steps:
165165
- uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.6, 3.7, 3.8]
15+
python-version: [3.6, 3.7, 3.8, 3.9]
1616
steps:
1717
- uses: actions/checkout@v2
1818
with:

.github/workflows/setupapp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
which python
3737
python -m pip install --upgrade pip wheel
3838
python -m pip uninstall -y torch torchvision
39-
python -m pip install torch==1.7.1 torchvision==0.8.2
39+
python -m pip install torch==1.8.1 torchvision==0.9.1
4040
python -m pip install -r requirements-dev.txt
4141
- name: Run unit tests report coverage
4242
run: |
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
strategy:
6868
matrix:
69-
python-version: [3.6, 3.7, 3.8]
69+
python-version: [3.6, 3.7, 3.8, 3.9]
7070
steps:
7171
- uses: actions/checkout@v2
7272
with:
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install the dependencies
9191
run: |
9292
python -m pip install --upgrade pip wheel
93-
python -m pip install torch==1.7.1 torchvision==0.8.2
93+
python -m pip install torch==1.8.1 torchvision==0.9.1
9494
python -m pip install -r requirements-dev.txt
9595
- name: Run quick tests CPU ubuntu
9696
run: |

0 commit comments

Comments
 (0)