We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4cc76 commit 8621b87Copy full SHA for 8621b87
circle/setup.sh
@@ -29,9 +29,11 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
29
then
30
pip install simplejson ordereddict ||
31
error_exit "${LINENO}: can't install extras for Python ${version}"
32
- pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE_2_6}
+ pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE_2_6} ||
33
+ error_exit "${LINENO}: can't install optional for Python ${version}"
34
else
- pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE}
35
+ pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE} ||
36
37
fi
38
39
# install some test tools
0 commit comments