Skip to content

Commit 8bba7d3

Browse files
committed
Ensure that shims for PYENV are first in path!
1 parent ed6860b commit 8bba7d3

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

circle/setup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ function error_exit
1212
exit 1
1313
}
1414

15+
# PYENV shims need to be infront of the rest of the path to work!
16+
export PATH="/home/ubuntu/.pyenv/shims:$PATH"
17+
1518
# for each version we want, setup a functional virtual environment
1619
for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
1720
echo Setting up Python ${version}

circle/test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ function error_exit
1212
exit 1
1313
}
1414

15+
# PYENV shims need to be infront of the rest of the path to work!
16+
export PATH="/home/ubuntu/.pyenv/shims:$PATH"
17+
1518
# for each version we want, setup a functional virtual environment
1619
for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
1720
echo Testing Python ${version}

0 commit comments

Comments
 (0)