Skip to content

Commit 0de6d92

Browse files
Update test.yml
1 parent e21fe94 commit 0de6d92

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ jobs:
1818
- 3.8
1919
- 3.9
2020
include:
21-
- os: "ubuntu-20.04"
22-
python-version: "3.9"
21+
- os: "ubuntu-latest"
22+
# There is no build for Python 3.9 in ubuntu>20.04.
23+
# This unclude can be removed when we drop support for Python 3.6.
24+
- os: "ubuntu-20.04"
25+
python-version: "3.9"
2326
steps:
2427
- uses: actions/checkout@v2
2528
with:
@@ -30,7 +33,6 @@ jobs:
3033
python-version: '${{ matrix.python-version }}'
3134
- name: Install dependencies
3235
run: |
33-
pip install --upgrade pip
3436
pip3 install -r requirements.txt
3537
pip3 install .
3638
pip3 install coverage

0 commit comments

Comments
 (0)