This repository was archived by the owner on Feb 28, 2024. It is now read-only.
File tree 2 files changed +5
-19
lines changed
2 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 9
9
- MKL_NUM_THREADS : 2
10
10
- MINICONDA_PATH : ~/miniconda
11
11
- CONDA_ENV_NAME : testenv
12
- - PYTHON_VERSION : 3.6
13
- - NUMPY_VERSION : 1.14.6
14
- - SKLEARN_VERSION : 0.20.4
15
- - SCIPY_VERSION : 1.1.0
16
- - MATPLOTLIB_VERSION : 2.1.1
17
- # on conda, this is the latest for python 3.5
18
- # The following places need to be in sync with regard to Cython version:
19
- # - .circleci config file
20
- # - sklearn/_build_utils/__init__.py
21
- # - advanced installation guide
22
- - CYTHON_VERSION : 0.28.5
23
- - SCIKIT_IMAGE_VERSION : 0.13
12
+ - PYTHON_VERSION : 3.7
24
13
steps :
25
14
- checkout
26
15
- run : ./build_tools/circle/checkout_merge_commit.sh
Original file line number Diff line number Diff line change @@ -121,9 +121,6 @@ if [[ "$CIRCLE_BRANCH" =~ ^master$|^[0-9]+\.[0-9]+\.X$ && -z "$CI_PULL_REQUEST"
121
121
then
122
122
# PDF linked into HTML
123
123
make_args=" dist LATEXMKOPTS=-halt-on-error"
124
- elif [[ " $build_type " =~ ^QUICK ]]
125
- then
126
- make_args=html-noplot
127
124
elif [[ " $build_type " =~ ^' BUILD: detected examples' ]]
128
125
then
129
126
# pattern for examples to run is the last line of output
168
165
169
166
# packaging won't be needed once setuptools starts shipping packaging>=17.0
170
167
conda create -n $CONDA_ENV_NAME --yes --quiet python=" ${PYTHON_VERSION:-* } " \
171
- numpy= " ${NUMPY_VERSION :-* } " scipy= " ${SCIPY_VERSION :-* } " \
172
- cython= " ${CYTHON_VERSION :-* } " pytest coverage \
173
- matplotlib= " ${MATPLOTLIB_VERSION :-* } " sphinx=2.1.2 pillow \
174
- scikit-image= " ${SCIKIT_IMAGE_VERSION :-* } " pandas= " ${PANDAS_VERSION :-* } " \
168
+ numpy scipy \
169
+ cython pytest coverage \
170
+ matplotlib sphinx pillow \
171
+ scikit-image pandas \
175
172
joblib memory_profiler packaging
176
173
177
174
export MPLBACKEND=" agg"
You can’t perform that action at this time.
0 commit comments