File tree 2 files changed +21
-6
lines changed
2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,34 @@ python:
9
9
- ' pypy'
10
10
- ' pypy3'
11
11
env :
12
- - ISORT_VER="4"
13
- - ISORT_VER="5"
12
+ - ISORT_VER="4" FLAKE8_VER="3"
13
+ - ISORT_VER="5" FLAKE8_VER="3"
14
+ - ISORT_VER="4" FLAKE8_VER="4"
15
+ - ISORT_VER="5" FLAKE8_VER="4"
14
16
jobs :
15
17
exclude :
16
18
- python : " 2.7"
17
- env : ISORT_VER="5"
19
+ env : ISORT_VER="5" FLAKE8_VER="3"
20
+ - python : " 2.7"
21
+ env : ISORT_VER="5" FLAKE8_VER="4"
22
+ - python : " 2.7"
23
+ env : ISORT_VER="4" FLAKE8_VER="4"
24
+ - python : " 3.5"
25
+ env : ISORT_VER="5" FLAKE8_VER="3"
18
26
- python : " 3.5"
19
- env : ISORT_VER="5"
27
+ env : ISORT_VER="5" FLAKE8_VER="4"
28
+ - python : " 3.5"
29
+ env : ISORT_VER="4" FLAKE8_VER="4"
30
+ - python : " pypy"
31
+ env : ISORT_VER="5" FLAKE8_VER="3"
32
+ - python : " pypy"
33
+ env : ISORT_VER="5" FLAKE8_VER="4"
20
34
- python : " pypy"
21
- env : ISORT_VER="5 "
35
+ env : ISORT_VER="4" FLAKE8_VER="4 "
22
36
cache : pip
23
37
install :
24
38
- if [[ $ISORT_VER == "4" ]]; then pip install 'isort < 5'; fi
39
+ - if [[ $FLAKE8_VER == "3" ]]; then pip install 'flake8 < 4'; fi
25
40
- pip install .[test]
26
41
script :
27
42
- flake8 *.py
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def get_version(file="flake8_isort.py"):
56
56
test_suite = 'run_tests' ,
57
57
zip_safe = False ,
58
58
install_requires = [
59
- 'flake8 >= 3.2.1, <4 ' ,
59
+ 'flake8 >= 3.2.1, <5 ' ,
60
60
'isort >= 4.3.5, <6' ,
61
61
'testfixtures >= 6.8.0, <7' ,
62
62
],
You can’t perform that action at this time.
0 commit comments