Skip to content

Commit

Permalink
Merge pull request #17 from peterbe/test-travis-on-python-26
Browse files Browse the repository at this point in the history
test travis on python 2.6
  • Loading branch information
bhearsum committed Nov 26, 2014
2 parents 4ef5265 + d5200f6 commit 6a9bc56
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: python
python:
- "2.6"
- "2.7"

install:
Expand Down
6 changes: 5 additions & 1 deletion auslib/test/blobs/test_apprelease.py
@@ -1,4 +1,8 @@
from collections import OrderedDict
try:
from collections import OrderedDict
except ImportError:
# so you're in python <2.7
from ordereddict import OrderedDict
import mock
import unittest
from xml.dom import minidom
Expand Down
1 change: 1 addition & 0 deletions requirements/dev.txt
Expand Up @@ -7,3 +7,4 @@ coverage
certifi
requests==0.10.8
pyflakes
ordereddict==1.1

0 comments on commit 6a9bc56

Please sign in to comment.