Files
deb-python-falcon/travis_scripts/install.sh
Kurt Griffiths 1379641638 chore(tox): Fix errors due to new versions of flake8 and requests (#949)
Also fix Jython incompatibilities that were discovered in the process.
2016-11-18 19:51:40 -06:00

13 lines
516 B
Bash
Executable File

if [ "$JYTHON" = "true" ]; then
travis_scripts/install_jython2.7.sh
# NOTE(kgriffs): Use an older version of requests to work around a
# "method code too large" bug that is triggered starting with
# requests 2.11.1 under Jython 2.7.0 (see also the related Jython
# bug: http://bugs.jython.org/issue527524).
$HOME/jython/bin/pip install https://github.com/kennethreitz/requests/archive/v2.11.0.zip
$HOME/jython/bin/pip install -r tools/test-requires
else
pip install tox coveralls
fi