Skip to content

Commit

Permalink
Try Travis with Python as language
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bitwiseman committed Mar 21, 2013
1 parent 5000464 commit fa0e417
Showing 1 changed file with 5 additions and 21 deletions.
26 changes: 5 additions & 21 deletions .travis.yml
@@ -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"

0 comments on commit fa0e417

Please sign in to comment.