зеркало из https://github.com/microsoft/LightGBM.git
56 строки
1.3 KiB
Bash
56 строки
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
set -e -E -u -o pipefail
|
|
|
|
# oldest versions of dependencies published after
|
|
# minimum supported Python version's first release,
|
|
# for which there are wheels compatible with the
|
|
# python:{version} image
|
|
#
|
|
# see https://devguide.python.org/versions/
|
|
#
|
|
echo "installing lightgbm's dependencies"
|
|
pip install \
|
|
'cffi==1.15.1' \
|
|
'numpy==1.19.0' \
|
|
'pandas==1.1.3' \
|
|
'pyarrow==6.0.1' \
|
|
'scikit-learn==0.24.2' \
|
|
'scipy==1.6.0' \
|
|
|| exit 1
|
|
echo "done installing lightgbm's dependencies"
|
|
|
|
echo "installing lightgbm"
|
|
pip install --no-deps dist/*.whl || exit 1
|
|
echo "done installing lightgbm"
|
|
|
|
echo "installed package versions:"
|
|
pip freeze
|
|
|
|
echo ""
|
|
echo "checking that examples run without error"
|
|
|
|
# run a few examples to test that Python-package minimally works
|
|
echo ""
|
|
echo "--- advanced_example.py ---"
|
|
echo ""
|
|
python ./examples/python-guide/advanced_example.py || exit 1
|
|
|
|
echo ""
|
|
echo "--- logistic_regression.py ---"
|
|
echo ""
|
|
python ./examples/python-guide/logistic_regression.py || exit 1
|
|
|
|
echo ""
|
|
echo "--- simple_example.py ---"
|
|
echo ""
|
|
python ./examples/python-guide/simple_example.py || exit 1
|
|
|
|
echo ""
|
|
echo "--- sklearn_example.py ---"
|
|
echo ""
|
|
python ./examples/python-guide/sklearn_example.py || exit 1
|
|
|
|
echo ""
|
|
echo "done testing on oldest supported Python version"
|