Try Travis with Python as language

Travis doesn't support a matrix of languages in one repo, so even
though we specified differ versions of python we just used the same one.

Trying the python language as the base, since for our purposes there are
probably larger differences in versions of python.
This commit is contained in:
Liam Newman 2013-03-20 23:36:44 -07:00
parent 5000464bf0
commit fa0e417f0c

View File

@ -1,28 +1,12 @@
language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
language: python
python:
- "2.7"
- "3.2"
- "3.3"
matrix:
exclude:
- node_js: "0.6"
python: "3.2"
- node_js: "0.6"
python: "3.3"
- node_js: "0.8"
python: "2.7"
- node_js: "0.8"
python: "3.3"
- node_js: "0.10"
python: "2.7"
- node_js: "0.10"
python: "3.2"
node_js:
- "0.8"
script: "make"