".github/vscode:/vscode.git/clone" did not exist on "a84f9f627f9088f4f773cf9ad289554ef08af18d"
test-python-oldest.sh 1.19 KB
Newer Older
1
2
3
4
5
6
7
8
9
#!/bin/bash

# oldest versions of dependencies published after
# minimum supported Python version's first release
#
# see https://devguide.python.org/versions/
#
echo "installing lightgbm's dependencies"
pip install \
10
  'cffi==1.15.1' \
11
  'dataclasses' \
12
  'numpy==1.16.6' \
13
  'pandas==0.24.0' \
14
  'pyarrow==6.0.1' \
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  'scikit-learn==0.18.2' \
  'scipy==0.19.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"