FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bpython/.travis.install.sh at fix-583 · bpython/bpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
bpython
/
bpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
252
Star
2.8k
Code
Issues
144
Pull requests
5
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
bpython
/
.travis.install.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
38 lines (36 loc) · 961 Bytes
Breadcrumbs
bpython
/
.travis.install.sh
Copy path
File metadata and controls
executable file
·
38 lines (36 loc) · 961 Bytes
Raw
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
33
34
35
36
37
38
#!
/bin/bash
set
-e
set
-x
pip install setuptools
if
[[
$RUN
==
nosetests ]]
;
then
#
core dependencies
pip install pygments
pip install requests
pip install
'
curtsies >=0.1.17
'
pip install greenlet
pip install
'
six >=1.5
'
#
filewatch specific dependencies
pip install watchdog
#
jedi specific dependencies
pip install jedi
#
translation specific dependencies
pip install babel
#
Python 2.6 specific dependencies
if
[[
$TRAVIS_PYTHON_VERSION
==
2.6 ]]
;
then
pip install unittest2
elif
[[
$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
fi
Back
|
FazBrowse Home
|
New Git URL