File tree Expand file tree Collapse file tree 6 files changed +15
-11
lines changed
Filter options
Expand file tree Collapse file tree 6 files changed +15
-11
lines changed
Original file line number Diff line number Diff line change 44
44
45
45
doc :
46
46
docker :
47
- - image : circleci/python:3.7.3-stretch
47
+ - image : circleci/python:3.9
48
48
environment :
49
49
- OMP_NUM_THREADS : 2
50
50
- MKL_NUM_THREADS : 2
90
90
91
91
lint :
92
92
docker :
93
- - image : circleci/python:3.6
93
+ - image : circleci/python:3.9
94
94
steps :
95
95
- checkout
96
96
- run : ./build_tools/circle/checkout_merge_commit.sh
@@ -103,7 +103,7 @@ jobs:
103
103
104
104
pypy3 :
105
105
docker :
106
- - image : pypy:3.6-7.2.0
106
+ - image : pypy:3
107
107
steps :
108
108
- restore_cache :
109
109
keys :
@@ -119,7 +119,7 @@ jobs:
119
119
120
120
deploy :
121
121
docker :
122
- - image : circleci/python:3.6
122
+ - image : circleci/python:3.9
123
123
steps :
124
124
- checkout
125
125
- run : ./build_tools/circle/checkout_merge_commit.sh
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v2
12
12
- uses : actions/setup-python@v2
13
13
with :
14
- python-version : ' 3.8 '
14
+ python-version : ' 3.9 '
15
15
- name : Install dependencies
16
16
# scipy and cython are required to build sdist
17
17
run : |
Original file line number Diff line number Diff line change 15
15
steps :
16
16
- task : UsePythonVersion@0
17
17
inputs :
18
- versionSpec : ' 3.8 '
18
+ versionSpec : ' 3.9 '
19
19
- bash : |
20
20
pip install flake8 mypy==0.782
21
21
displayName: Install linters
@@ -129,7 +129,7 @@ jobs:
129
129
# It runs tests requiring lightgbm, pandas and PyAMG.
130
130
pylatest_pip_openblas_pandas :
131
131
DISTRIB : ' conda-pip-latest'
132
- PYTHON_VERSION : ' 3.8 '
132
+ PYTHON_VERSION : ' 3.9 '
133
133
PANDAS_VERSION : ' none'
134
134
CHECK_PYTEST_SOFT_DEPENDENCY : ' true'
135
135
TEST_DOCSTRINGS : ' true'
Original file line number Diff line number Diff line change @@ -84,7 +84,10 @@ elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
84
84
setup_ccache
85
85
python -m pip install -U pip
86
86
87
- python -m pip install pandas matplotlib pyamg scikit-image
87
+ # optionally install scikit-image
88
+ python -m pip install --only-binary :all: sckit-image || true
89
+
90
+ python -m pip install pandas matplotlib pyamg
88
91
# do not install dependencies for lightgbm since it requires scikit-learn
89
92
# and install a version less than 3.0.0 until the issue #18316 is solved.
90
93
python -m pip install " lightgbm<3.0.0" --no-deps
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ requires = [
6
6
" Cython>=0.28.5" ,
7
7
" numpy==1.13.3; python_version=='3.6' and platform_system!='AIX' and platform_python_implementation == 'CPython'" ,
8
8
" numpy==1.14.0; python_version=='3.6' and platform_system!='AIX' and platform_python_implementation != 'CPython'" ,
9
- " numpy==1.14.5; python_version=='3.7' and platform_system!='AIX'" ,
10
- " numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'" ,
11
9
" numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'" ,
10
+ " numpy==1.14.5; python_version=='3.7' and platform_system!='AIX'" ,
12
11
" numpy==1.16.0; python_version=='3.7' and platform_system=='AIX'" ,
13
- " numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'" ,
12
+ " numpy==1.17.3; python_version=='3.8'" ,
13
+ " numpy==1.19.3; python_version=='3.9'" ,
14
14
" scipy>=0.19.1" ,
15
15
]
Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ def setup_package():
240
240
'Programming Language :: Python :: 3.6' ,
241
241
'Programming Language :: Python :: 3.7' ,
242
242
'Programming Language :: Python :: 3.8' ,
243
+ 'Programming Language :: Python :: 3.9' ,
243
244
('Programming Language :: Python :: '
244
245
'Implementation :: CPython' ),
245
246
('Programming Language :: Python :: '
You can’t perform that action at this time.
0 commit comments