13 lines
516 B
Bash
Executable File
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
|