Skip to content

Commit c98ff96

Browse files
authored
Merge pull request #14 from toidi/update-python-versions
add python versions to travis build definition
2 parents 33eb832 + ba71e58 commit c98ff96

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.travis.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1+
sudo: false
2+
13
language: python
4+
5+
matrix:
6+
include:
7+
- python: 3.6
8+
env: TOXENV=py36
9+
- python: 3.5
10+
env: TOXENV=py35
11+
- python: 2.7
12+
env: TOXENV=py27
13+
14+
215
install:
316
- pip install tox coveralls
4-
# command to run tests
17+
518
script:
619
tox
7-
env:
8-
- TOXENV=py26
9-
- TOXENV=py27
10-
- TOXENV=py34
11-
- TOXENV=py35
20+
1221
after_success:
1322
coveralls

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def find_version(*file_paths):
5050
'Operating System :: OS Independent',
5151
'Programming Language :: Python :: 2.6',
5252
'Programming Language :: Python :: 2.7',
53-
'Programming Language :: Python :: 3.4',
5453
'Programming Language :: Python :: 3.5',
54+
'Programming Language :: Python :: 3.6',
5555
'Topic :: System :: Distributed Computing',
5656
],
5757
)

0 commit comments

Comments
 (0)