From: Philip Howard Date: Tue, 26 Jan 2021 17:18:36 +0000 (+0000) Subject: Update python versions for CI (#96) X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/commitdiff_plain/a9a34aa1c9b9f9f182ed56b53d9042b63ea6023f?ds=sidebyside;hp=c4f5e80eb9b3004836039577369a10cc421db761 Update python versions for CI (#96) * Drop Python 3.4 - GitHub reports it as not found, despite it being in the list it links to!?!?!? * Fix Coveralls --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d8187f0..89154d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [2.7, 3.4, 3.5, 3.7, 3.8] + python: [2.7, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 @@ -32,6 +32,6 @@ jobs: working-directory: library run: | python -m pip install coveralls - coveralls + coveralls --service=github if: ${{ matrix.python == '3.8' }}