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