##// END OF EJS Templates
update release_windows.py...
update release_windows.py Don't mangle plat-name before building, because that has weird side effects. This is the version I actually used to make the 0.13 installers. PyPI upload doesn't work (need to modify the upload distutils command).

File last commit:

r7633:2496c83f
r7791:a1b7d009
Show More
.travis.yml
14 lines | 375 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
before_install:
- pip install --use-mirrors numpy
- 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