Skip to content

Commit 2eb787f

Browse files
committed
update CHANGES and minor changes for new python versions.
1 parent 6799a6f commit 2eb787f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ branches:
2525
script:
2626
- doit
2727
- py.test
28-
- coverage run `which py.test`
28+
- if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]; then coverage run `which py.test`; fi
2929

3030
after_success:
31-
- coveralls
31+
- if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]; then coveralls; fi
3232

3333

3434
notifications:

CHANGES

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
Changes
44
=======
55

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+
613
0.4.0 (*2015-09-27*)
714
=======================
815

setup.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# -*- coding: utf-8 -*-
22

3-
import sys
43
from setuptools import setup
54

65
install_requires = [
76
'doit',
87
'configclass',
98
]
109

11-
if sys.version_info[0] < 3 or sys.version_info[1] < 4:
12-
install_requires.append('pathlib')
13-
1410
setup (
1511
name = 'doit-py',
1612
version = '0.4.0',

0 commit comments

Comments
 (0)