8000 CI Fix min dependencies for scikit-image (#20108) · scikit-learn/scikit-learn@2a43ed2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2a43ed2

Browse files
authored
CI Fix min dependencies for scikit-image (#20108)
1 parent 094992b commit 2a43ed2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_tools/circle/build_doc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,11 @@ conda create -n $CONDA_ENV_NAME --yes --quiet \
172172
"$(get_dep cython $CYTHON_VERSION)" \
173173
"$(get_dep matplotlib $MATPLOTLIB_VERSION)" \
174174
"$(get_dep sphinx $SPHINX_VERSION)" \
175-
"$(get_dep scikit-image $SCIKIT_IMAGE_VERSION)" \
176175
"$(get_dep pandas $PANDAS_VERSION)" \
177176
joblib memory_profiler packaging seaborn pillow pytest coverage
178177

179178
source activate testenv
179+
pip install "$(get_dep scikit-image $SCIKIT_IMAGE_VERSION)"
180180
pip install "$(get_dep sphinx-gallery $SPHINX_GALLERY_VERSION)"
181181
pip install "$(get_dep numpydoc $NUMPYDOC_VERSION)"
182182
pip install "$(get_dep sphinx-prompt $SPHINX_PROMPT_VERSION)"

sklearn/_min_dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'threadpoolctl': (THREADPOOLCTL_MIN_VERSION, 'install'),
2727
'cython': (CYTHON_MIN_VERSION, 'build'),
2828
'matplotlib': ('2.2.2', 'benchmark, docs, examples, tests'),
29-
'scikit-image': ('0.14', 'docs, examples, tests'),
29+
'scikit-image': ('0.14.5', 'docs, examples, tests'),
3030
'pandas': ('0.23.4', 'benchmark, docs, examples, tests'),
3131
'seaborn': ('0.9.0', 'docs, examples'),
3232
'memory_profiler': ('0.57.0', 'benchmark, docs'),

0 commit comments

Comments
 (0)
0