|
6 | 6 | dist: xenial |
7 | 7 | python: '3.9-dev' |
8 | 8 | install: |
9 | | - - pip install -r requirements.txt |
| 9 | + - pip install "flake8>=3.8" -r requirements.txt |
10 | 10 | script: |
11 | 11 | - flake8 --count |
12 | 12 | - python setup.py bdist_wheel sdist |
13 | 13 | - name: "Python 3.8" |
14 | 14 | dist: xenial |
15 | 15 | python: '3.8' |
16 | 16 | install: |
17 | | - - pip install -r requirements.txt |
| 17 | + - pip install "flake8>=3.8" -r requirements.txt |
18 | 18 | script: |
19 | 19 | - flake8 --count |
20 | 20 | - python setup.py bdist_wheel sdist |
21 | 21 | - name: "Python 3.7" |
22 | 22 | dist: xenial |
23 | 23 | python: '3.7' |
24 | 24 | install: |
25 | | - - pip install -r requirements.txt |
| 25 | + - pip install "flake8>=3.8" -r requirements.txt |
26 | 26 | script: |
27 | 27 | - flake8 --count |
28 | 28 | - python setup.py bdist_wheel sdist |
29 | 29 | - name: "Python 3.6" |
30 | 30 | dist: xenial |
31 | 31 | python: '3.6' |
32 | 32 | install: |
33 | | - - pip install -r requirements.txt |
| 33 | + - pip install "flake8>=3.8" -r requirements.txt |
34 | 34 | script: |
35 | 35 | - flake8 --count |
36 | 36 | - python setup.py bdist_wheel sdist |
37 | 37 | - name: "Python 3.5" |
38 | 38 | dist: xenial |
39 | 39 | python: '3.5' |
40 | 40 | install: |
41 | | - - pip install -r requirements.txt |
42 | | - - flake8 --count |
| 41 | + - pip install "flake8>=3.8" -r requirements.txt |
43 | 42 | script: |
| 43 | + - flake8 --count |
44 | 44 | - python setup.py bdist_wheel sdist |
45 | 45 | - name: "Python 3.4" |
46 | 46 | dist: trusty |
47 | 47 | python: '3.4' |
48 | 48 | install: |
49 | | - - pip install -I -r requirements.txt |
| 49 | + - pip install -I "flake8<=2.6" -r requirements.txt |
50 | 50 | script: |
51 | 51 | - flake8 --count --ignore=F401 . |
52 | 52 | - python setup.py bdist_wheel sdist |
53 | 53 | - name: "Python 3.3" |
54 | 54 | dist: trusty |
55 | 55 | python: '3.3' |
56 | 56 | install: |
57 | | - - pip install -I -r requirements.txt |
| 57 | + - pip install -I "flake8<=2.6" -r requirements.txt |
58 | 58 | script: |
59 | 59 | - flake8 --count --ignore=F401 . |
60 | 60 | - python setup.py bdist_wheel sdist |
61 | 61 | - name: "Python 2.7" |
62 | 62 | dist: xenial |
63 | 63 | python: '2.7' |
64 | 64 | install: |
65 | | - - pip install -r requirements.txt |
| 65 | + - pip install "flake8>=3.8" -r requirements.txt |
66 | 66 | script: |
67 | 67 | - flake8 --count |
68 | 68 | - python setup.py bdist_wheel sdist |
|
0 commit comments