Skip to content

Commit a43c05c

Browse files
committed
add py34 and fix py26 on travis builds.
1 parent ba467fe commit a43c05c

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ python:
44
- "2.7"
55
- "3.2"
66
- "3.3"
7+
- "3.4"
78
# command to install dependencies
8-
install: "pip install -r requirements.txt"
9+
install:
10+
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]] ; then pip install ordereddict; fi
11+
- pip install -r requirements.txt
912
# command to run tests
1013
script: nosetests

0 commit comments

Comments
 (0)