File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 36
36
NUMPY_VERSION : ' *'
37
37
SCIPY_VERSION : ' *'
38
38
CYTHON_VERSION : ' *'
39
+ LIGHTGBM_VERSION : ' *'
39
40
PILLOW_VERSION : ' *'
40
41
PYTEST_VERSION : ' *'
41
42
JOBLIB_VERSION : ' *'
@@ -71,11 +72,10 @@ jobs:
71
72
JOBLIB_VERSION : ' 0.12.3'
72
73
COVERAGE : ' true'
73
74
# Linux environment to test the latest available dependencies and MKL.
74
- # It runs tests requiring lightgbm, pandas and PyAMG.
75
+ # It runs tests requiring pandas and PyAMG.
75
76
pylatest_pip_openblas_pandas :
76
77
DISTRIB : ' conda-pip-latest'
77
- # Pin the python version to 3.7 since lightgbm is not available for 3.8
78
- PYTHON_VERSION : ' 3.7'
78
+ PYTHON_VERSION : ' 3.8'
79
79
PYTEST_VERSION : ' 4.6.2'
80
80
COVERAGE : ' true'
81
81
CHECK_PYTEST_SOFT_DEPENDENCY : ' true'
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ if [[ "$DISTRIB" == "conda" ]]; then
41
41
TO_INSTALL=" $TO_INSTALL matplotlib=$MATPLOTLIB_VERSION "
42
42
fi
43
43
44
+ if [[ -n " $LIGHTGBM_VERSION " ]]; then
45
+ TO_INSTALL=" $TO_INSTALL lightgbm=$LIGHTGBM_VERSION "
46
+ fi
47
+
44
48
if [[ " $UNAMESTR " == " Darwin" ]]; then
45
49
if [[ " $SKLEARN_TEST_NO_OPENMP " != " true" ]]; then
46
50
# on macOS, install an OpenMP-enabled clang/llvm from conda-forge.
@@ -91,7 +95,7 @@ elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
91
95
python -m pip install -U pip
92
96
python -m pip install numpy scipy cython joblib
93
97
python -m pip install pytest==$PYTEST_VERSION pytest-cov pytest-xdist
94
- python -m pip install pandas matplotlib pyamg lightgbm
98
+ python -m pip install pandas matplotlib pyamg
95
99
fi
96
100
97
101
if [[ " $COVERAGE " == " true" ]]; then
You can’t perform that action at this time.
0 commit comments