Skip to content

Commit 16ae9cb

Browse files
Run Python 3.6 on Ubuntu 20.04 for CI and bump isort (#355)
1 parent 6e41b8d commit 16ae9cb

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,22 @@ jobs:
2525

2626
test:
2727
name: Python ${{ matrix.python }}
28-
runs-on: ubuntu-latest
28+
runs-on: ${{ matrix.os }}
2929

3030
strategy:
3131
matrix:
32+
os:
33+
- "ubuntu-latest"
3234
python:
33-
- "3.6"
3435
- "3.7"
3536
- "3.8"
3637
- "3.9"
3738
- "3.10"
38-
- "pypy-3.6"
39+
include:
40+
- os: "ubuntu-20.04"
41+
python: "3.6"
42+
- os: "ubuntu-20.04"
43+
python: "pypy-3.6"
3944

4045
steps:
4146
- uses: actions/checkout@v3

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
hooks:
1010
- id: flake8
1111
- repo: https://github.com/pycqa/isort
12-
rev: 5.9.1
12+
rev: 5.12.0
1313
hooks:
1414
- id: isort
1515
- repo: https://github.com/pre-commit/mirrors-mypy

0 commit comments

Comments
 (0)