Skip to content

Commit

Permalink
Merge pull request #14 from toidi/update-python-versions
Browse files Browse the repository at this point in the history
add python versions to travis build definition
  • Loading branch information
toidi authored Aug 28, 2018
2 parents 33eb832 + ba71e58 commit c98ff96
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
sudo: false

language: python

matrix:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.5
env: TOXENV=py35
- python: 2.7
env: TOXENV=py27


install:
- pip install tox coveralls
# command to run tests

script:
tox
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py34
- TOXENV=py35

after_success:
coveralls
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def find_version(*file_paths):
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Distributed Computing',
],
)

0 comments on commit c98ff96

Please sign in to comment.