Enumerate what versions of Python should be available under Travis.

This commit is contained in:
Graham Dumpleton 2016-12-18 16:29:34 +11:00
parent 7377a2ec3a
commit 29968e74d4
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
language: python
python: 2.7
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
global:
- COVERAGE_CMD="coverage run -m"