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 a6b1872 commit da127f6Copy full SHA for da127f6
ci/travis_install.sh
@@ -19,11 +19,10 @@ if test "$PYENV_VERSION" = "system"; then
19
echo "ERROR: LIBPYTHON is not provided for PYENV_VERSION=system" >2
20
exit 1
21
fi
22
- PYENV_INSTALL_VERSION=$(basename $(dirname $(dirname $LIBPYTHON)))
23
-else
24
- PYENV_INSTALL_VERSION=$PYENV_VERSION
+ # NOTE: PYENV_VERSION should be the version of LIBPYTHON during install script
+ PYENV_VERSION=$(basename $(dirname $(dirname $LIBPYTHON)))
25
26
-PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install -f $PYENV_INSTALL_VERSION
+PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install -f $PYENV_VERSION
27
28
case "$PYENV_VERSION" in
29
*conda*)
0 commit comments