File size: 516 Bytes
fc0f7bd
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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