Skip to content

Commit e02077f

Browse files
committed
disable unavailable python 3.4 in CI, add 3.9
1 parent 3170c52 commit e02077f

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,14 @@
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

44
name: Test
5-
on: [ push, pull_request ]
5+
on: [push, pull_request]
66

77
jobs:
88
test:
99
strategy:
1010
matrix:
11-
os: [ ubuntu, windows, macos ]
12-
python: [ 3.4, 3.5, 3.6, 3.7, 3.8 ]
13-
14-
# Python v3.4 is not available on macos and windows
15-
exclude:
16-
- os: macos
17-
python: 3.4
18-
- os: windows
19-
python: 3.4
11+
os: [ubuntu, windows, macos]
12+
python: [3.5, 3.6, 3.7, 3.8, 3.9]
2013

2114
runs-on: ${{ matrix.os }}-latest
2215

@@ -34,4 +27,4 @@ jobs:
3427
pip install virtualenv
3528
3629
- run: make depend
37-
- run: make test
30+
- run: make test

0 commit comments

Comments
 (0)