We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3358704 + b662949 commit 5294a23Copy full SHA for 5294a23
.github/workflows/test.yml
@@ -14,11 +14,16 @@ jobs:
14
os: [ubuntu-latest, windows-latest]
15
python-version:
16
- '2.7'
17
- - '3.6'
18
- '3.7'
19
- '3.8'
20
- '3.9'
21
- '3.10'
+ include:
22
+ # Python 3.6 is not supported in Ubuntu 22.04, so manually adding it to matrix with older version of Ubuntu
23
+ - os: ubuntu-20.04
24
+ python-version: '3.6'
25
+ - os: windows-latest
26
27
28
runs-on: ${{ matrix.os }}
29
.pre-commit-config.yaml
@@ -19,7 +19,7 @@ repos:
hooks:
- id: check-manifest
-- repo: https://gitlab.com/pycqa/flake8
+- repo: https://github.com/PyCQA/flake8
rev: 3.8.3
- id: flake8
0 commit comments