Skip to content

Commit 6799a6f

Browse files
committed
Update python versions support
Removed Python 2.7 as doit itself not supporting 2.7. Python 3.3 and 3.4 is EOL (https://devguide.python.org/#status-of-python-branches), added more recent python versions (3.6, 3.7, 3.8).
1 parent ef4a878 commit 6799a6f

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.travis.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: python
22
python:
3-
- "2.7"
4-
- "3.3"
5-
- "3.4"
63
- "3.5"
4+
- "3.6"
5+
- "3.7"
6+
- "3.8"
77

88
sudo: false
99

@@ -25,13 +25,13 @@ branches:
2525
script:
2626
- doit
2727
- py.test
28-
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then coverage run `which py.test`; fi
28+
- coverage run `which py.test`
2929

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

3333

3434
notifications:
35-
email:
36-
on_success: change
37-
on_failure: change
35+
email:
36+
on_success: change
37+
on_failure: change

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@
3030
'Natural Language :: English',
3131
'Operating System :: OS Independent',
3232
'Programming Language :: Python',
33-
'Programming Language :: Python :: 2',
34-
'Programming Language :: Python :: 2.7',
3533
'Programming Language :: Python :: 3',
36-
'Programming Language :: Python :: 3.3',
37-
'Programming Language :: Python :: 3.4',
3834
'Programming Language :: Python :: 3.5',
35+
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
3938
'Topic :: Software Development :: Libraries',
4039
]
4140
)

0 commit comments

Comments
 (0)