Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
32 lines (30 loc) · 789 Bytes

File metadata and controls

executable file
·
32 lines (30 loc) · 789 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
set -e
set -x
pip install setuptools
if [[ $RUN == nosetests ]]; then
# core dependencies
pip install -r requirements.txt
# filewatch specific dependencies
pip install watchdog
# jedi specific dependencies
pip install jedi
# translation specific dependencies
pip install babel
# Python 2.7 specific dependencies
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
# dependencies for crasher tests
pip install Twisted urwid
fi
case $TRAVIS_PYTHON_VERSION in
2*|pypy)
# test specific dependencies
pip install mock
;;
esac
# build and install
python setup.py install
elif [[ $RUN == build_sphinx ]]; then
# documentation specific dependencies
pip install 'sphinx >=1.1.3'
fi
Morty Proxy This is a proxified and sanitized view of the page, visit original site.