File tree 2 files changed +9
-7
lines changed
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
24
24
export PYENV_VERSION=${version}
25
25
echo " Using pyenv version $( pyenv version) "
26
26
27
+ # this was a major issue previously, sanity check that we're using the
28
+ # version we *think* we're using (that pyenv is pointing to)
29
+ echo " python -c 'import sys; print(sys.version)'"
30
+ python -c ' import sys; print(sys.version)'
31
+
27
32
# install core requirements all versions need
28
33
pip install -r ${PLOTLY_CORE_REQUIREMENTS_FILE} ||
29
34
error_exit " ${LINENO} : can't install core reqs for Python ${version} "
Original file line number Diff line number Diff line change @@ -24,14 +24,11 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
24
24
export PYENV_VERSION=${version}
25
25
echo " Using pyenv version $( pyenv version) "
26
26
27
- echo " python -c 'import sys; print(sys.version_info)' yields:"
28
- python -c ' import sys; print(sys.version_info)'
27
+ # this was a major issue previously, sanity check that we're using the
28
+ # version we *think* we're using (that pyenv is pointing to)
29
+ echo " python -c 'import sys; print(sys.version)'"
30
+ python -c ' import sys; print(sys.version)'
29
31
30
- echo " python -c 'import os; print(os.getenv('\''PYENV_VERSION'\''))'"
31
- python -c ' import os; print(os.getenv(' \' ' PYENV_VERSION' \' ' ))'
32
-
33
- echo " current env"
34
- env
35
32
36
33
echo " install plotly (ignoring possibly cached versions)"
37
34
pip install -I ${PLOTLY_PACKAGE_ROOT} ||
You can’t perform that action at this time.
0 commit comments