File tree Expand file tree Collapse file tree 3 files changed +71
-13
lines changed Expand file tree Collapse file tree 3 files changed +71
-13
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
- python :
3
- - ' 2.7'
4
- - ' 3.5'
5
- - ' 3.6'
6
- - ' 3.7'
7
- - ' 3.8'
8
2
cache : pip
9
- install :
10
- - pip install flake8
11
- script :
12
- - flake8 --count
13
- - python setup.py bdist_wheel
3
+ jobs :
4
+ include :
5
+ - name : " Python 3.8"
6
+ dist : xenial
7
+ python : ' 3.8'
8
+ install :
9
+ - pip install -r requirements.txt
10
+ script :
11
+ - flake8 --count
12
+ - python setup.py bdist_wheel
13
+ - name : " Python 3.7"
14
+ dist : xenial
15
+ python : ' 3.7'
16
+ install :
17
+ - pip install -r requirements.txt
18
+ script :
19
+ - flake8 --count
20
+ - python setup.py bdist_wheel
21
+ - name : " Python 3.6"
22
+ dist : xenial
23
+ python : ' 3.6'
24
+ install :
25
+ - pip install -r requirements.txt
26
+ script :
27
+ - flake8 --count
28
+ - python setup.py bdist_wheel
29
+ - name : " Python 3.5"
30
+ dist : xenial
31
+ python : ' 3.5'
32
+ install :
33
+ - pip install -r requirements.txt
34
+ - flake8 --count
35
+ script :
36
+ - python setup.py bdist_wheel
37
+ - name : " Python 3.4"
38
+ dist : trusty
39
+ python : ' 3.4'
40
+ install :
41
+ - pip install -I -r requirements.txt
42
+ script :
43
+ - flake8 --count --ignore=F401 .
44
+ - python setup.py bdist_wheel
45
+ - name : " Python 3.3"
46
+ dist : trusty
47
+ python : ' 3.3'
48
+ install :
49
+ - pip install -I -r requirements.txt
50
+ script :
51
+ - flake8 --count --ignore=F401 .
52
+ - python setup.py bdist_wheel
53
+ - name : " Python 2.7"
54
+ dist : xenial
55
+ python : ' 2.7'
56
+ install :
57
+ - pip install -r requirements.txt
58
+ script :
59
+ - flake8 --count
60
+ - python setup.py bdist_wheel
14
61
before_deploy : python setup.py sdist
15
62
deploy :
16
63
- provider : pypi
Original file line number Diff line number Diff line change 1
- setuptools
2
- typing ;python_version < "3.5"
1
+ flake8 >= 3.8 ;python_version >= "3.5"
2
+ setuptools >= 49.6 ;python_version >= "3.5"
3
+ flake8 >= 2.6 ,< 3.0 ;python_version == '3.4'
4
+ flake8 >= 2.6 ,< 3.0 ;python_version == '3.3'
5
+ setuptools == 39.2 ;python_version == '3.4'
6
+ setuptools == 39.2 ;python_version == '3.3'
7
+ typing >= 3.6 ,< 3.7 ;python_version == '3.4'
8
+ typing >= 3.6 ,< 3.7 ;python_version == '3.3'
9
+ flake8 >= 3.8 ;python_version < '3'
10
+ setuptools >= 44.1 ;python_version < "3"
11
+ typing >= 3.7 ;python_version < "3"
Original file line number Diff line number Diff line change 24
24
"Programming Language :: Python :: 2" ,
25
25
"Programming Language :: Python :: 2.7" ,
26
26
"Programming Language :: Python :: 3" ,
27
+ "Programming Language :: Python :: 3.3" ,
28
+ "Programming Language :: Python :: 3.4" ,
27
29
"Programming Language :: Python :: 3.5" ,
28
30
"Programming Language :: Python :: 3.6" ,
29
31
"Programming Language :: Python :: 3.7" ,
You can’t perform that action at this time.
0 commit comments