File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ branches:
25
25
script :
26
26
- doit
27
27
- py.test
28
- - coverage run `which py.test`
28
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]; then coverage run `which py.test`; fi
29
29
30
30
after_success :
31
- - coveralls
31
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]; then coveralls; fi
32
32
33
33
34
34
notifications :
Original file line number Diff line number Diff line change 3
3
Changes
4
4
=======
5
5
6
+ 0.5.0 (*2020-05-24*)
7
+ =======================
8
+
9
+ - drop support for python 2.7, 3.3, 3.4
10
+ - add support for python 3.6, 3.7, 3..8
11
+
12
+
6
13
0.4.0 (*2015-09-27*)
7
14
=======================
8
15
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
3
- import sys
4
3
from setuptools import setup
5
4
6
5
install_requires = [
7
6
'doit' ,
8
7
'configclass' ,
9
8
]
10
9
11
- if sys .version_info [0 ] < 3 or sys .version_info [1 ] < 4 :
12
- install_requires .append ('pathlib' )
13
-
14
10
setup (
15
11
name = 'doit-py' ,
16
12
version = '0.4.0' ,
You can’t perform that action at this time.
0 commit comments