File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies:
16
16
- bash circle/setup.sh
17
17
18
18
# install testing tools for circle's version of things
19
- - pip install nose coverage
19
+ - pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE}
20
20
- pip install -I .
21
21
22
22
# we need to cd out of the project root to ensure the install worked
Original file line number Diff line number Diff line change @@ -35,10 +35,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
35
35
pip install -r ${PLOTLY_CORE_REQUIREMENTS_FILE} ||
36
36
error_exit " ${SIG} ${LINENO} : can't install core reqs for Python ${version} ."
37
37
38
+ # install optional (including test) requirements
38
39
pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE} ||
39
40
error_exit " ${SIG} ${LINENO} : can't install optional for Python ${version} ."
40
-
41
- # install some test tools
42
- pip install nose coverage ||
43
- error_exit " ${SIG} ${LINENO} : can't install test tools for Python ${version} ."
44
41
done
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
31
31
echo " ${SIG} Running: python -c 'import sys; print(sys.version)'. We've got:"
32
32
python -c ' import sys; print(sys.version)'
33
33
34
-
35
34
echo " ${SIG} Install plotly (ignoring possibly cached versions)."
36
35
pip install -I ${PLOTLY_PACKAGE_ROOT} > /dev/null ||
37
36
error_exit " ${SIG} ${LINENO} : can't install plotly package from project root"
Original file line number Diff line number Diff line change @@ -12,10 +12,11 @@ numpy
12
12
# matplotlib==1.3.1
13
13
14
14
## testing dependencies ##
15
- nose==1.3.3
15
+ nose
16
+ coverage
16
17
17
- ## ipython dependencies ##
18
- ipython[all]==3.0.0
18
+ ## ipython ##
19
+ ipython
19
20
20
21
## pandas deps for some matplotlib functionality ##
21
22
pandas
You can’t perform that action at this time.
0 commit comments