Skip to content

Commit 669e4dc

Browse files
committed
Drop Python 3.4, fix coveralls
1 parent b1b8296 commit 669e4dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: [2.7, 3.4, 3.5, 3.7, 3.8]
14+
python: [2.7, 3.5, 3.7, 3.9]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -32,6 +32,6 @@ jobs:
3232
working-directory: library
3333
run: |
3434
python -m pip install coveralls
35-
coveralls
36-
if: ${{ matrix.python == '3.8' }}
35+
coveralls --service=github
36+
if: ${{ matrix.python == '3.9' }}
3737

library/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,35},qa
2+
envlist = py{27,35,37,39},qa
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)