##// END OF EJS Templates
update release/authors...
update release/authors - don't tell people to email Fernando every time IPython crashes :) - supported Pythons updated to remove 3.1, add 3.3. - `IPython.__author__` is now just ipython-dev, rather than assorted individuals - don't mention old, unsupported Windowses (I would argue that XP should be dropped as well, but I know that won't fly)

File last commit:

r8987:c06f654b
r9188:449de656
Show More
.travis.yml
14 lines | 347 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
before_install:
- easy_install -q pyzmq
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi