diff options
| author | Yuval Adam <_@yuv.al> | 2020-02-01 13:11:50 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2020-02-01 13:11:50 +0200 |
| commit | 6498b49d54d86e140f8ff037eb305d044cad7f37 (patch) | |
| tree | 2efd6ed36a9fc878b64f78e0ffbe626df87f43ed /.github/workflows/test.yml | |
| parent | bc234fbc5f61c24ba5dcd978c87e65b5ec73e90e (diff) | |
Just drop py3.5 from the testing matrix
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f653fb6..c563631 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 @@ -21,7 +21,6 @@ jobs: python -m pip install --upgrade pip pip install black pytest - name: Check formatting with black - if: matrix.python-version != 3.5 run: | black --check . - name: Test with pytest |
