File tree Expand file tree Collapse file tree 2 files changed +3
-13
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +3
-13
lines changed
Original file line number Diff line number Diff line change @@ -2,10 +2,9 @@ machine:
2
2
environment :
3
3
PLOTLY_PACKAGE_ROOT : /home/ubuntu/python-api
4
4
PLOTLY_CONFIG_DIR : ${HOME}/.plotly
5
- PLOTLY_PYTHON_VERSIONS : 2.6.8 2. 7.8 3.3.3 3.4.1
5
+ PLOTLY_PYTHON_VERSIONS : 2.7.8 3.3.3 3.4.1
6
6
PLOTLY_CORE_REQUIREMENTS_FILE : ${PLOTLY_PACKAGE_ROOT}/requirements.txt
7
7
PLOTLY_OPTIONAL_REQUIREMENTS_FILE : ${PLOTLY_PACKAGE_ROOT}/optional-requirements.txt
8
- PLOTLY_OPTIONAL_REQUIREMENTS_FILE_2_6 : ${PLOTLY_PACKAGE_ROOT}/optional-requirements-2-6.txt
9
8
dependencies :
10
9
override :
11
10
Original file line number Diff line number Diff line change @@ -33,17 +33,8 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
33
33
pip install -r ${PLOTLY_CORE_REQUIREMENTS_FILE} ||
34
34
error_exit " ${LINENO} : can't install core reqs for Python ${version} "
35
35
36
- # handle funkiness around python 2.6
37
- if [ ${version: 0: 3} == ' 2.6' ]
38
- then
39
- pip install -e ' .[PY2.6]' ||
40
- error_exit " ${LINENO} : can't install extras for Python ${version} "
41
- pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE_2_6} ||
42
- error_exit " ${LINENO} : can't install optional for Python ${version} "
43
- else
44
- pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE} ||
45
- error_exit " ${LINENO} : can't install optional for Python ${version} "
46
- fi
36
+ pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE} ||
37
+ error_exit " ${LINENO} : can't install optional for Python ${version} "
47
38
48
39
# install some test tools
49
40
pip install nose coverage ||
You can’t perform that action at this time.
0 commit comments