Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] fix build python #6026

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion build-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -354,12 +354,18 @@ if test "${INSTALL}" = true; then
echo "--- installing lightgbm ---"
# ref for use of '--find-links': https://stackoverflow.com/a/52481267/3986677
cd ../dist
LGB_VER=$(head -n 1 ../VERSION.txt)
if test "${BUILD_SDIST}" = true; then
SUFFIX="tar.gz"
elif test "${BUILD_WHEEL}" = true; then
SUFFIX="whl"
fi
pip install \
${PIP_INSTALL_ARGS} \
--force-reinstall \
--no-cache-dir \
--find-links=. \
lightgbm
lightgbm-${LGB_VER}*.${SUFFIX}
cd ../
fi

Expand Down
Loading