@@ -34,6 +34,7 @@ matrix:
34
34
compiler : clang
35
35
osx_image : xcode6.4
36
36
env :
37
+ - PYTHON_VERSION=3.5
37
38
- JOB_NAME : " 35_osx"
38
39
- NOSE_ARGS="not slow and not network and not disabled"
39
40
- BUILD_TYPE=conda
@@ -43,6 +44,7 @@ matrix:
43
44
- USE_CACHE=true
44
45
- python : 2.7
45
46
env :
47
+ - PYTHON_VERSION=2.7
46
48
- JOB_NAME : " 27_slow_nnet_LOCALE"
47
49
- NOSE_ARGS="slow and not network and not disabled"
48
50
- LOCALE_OVERRIDE="zh_CN.UTF-8"
@@ -56,6 +58,7 @@ matrix:
56
58
- language-pack-zh-hans
57
59
- python : 2.7
58
60
env :
61
+ - PYTHON_VERSION=2.7
59
62
- JOB_NAME : " 27_nslow"
60
63
- NOSE_ARGS="not slow and not disabled"
61
64
- FULL_DEPS=true
@@ -69,6 +72,7 @@ matrix:
69
72
- python-gtk2
70
73
- python : 3.4
71
74
env :
75
+ - PYTHON_VERSION=3.4
72
76
- JOB_NAME : " 34_nslow"
73
77
- NOSE_ARGS="not slow and not disabled"
74
78
- FULL_DEPS=true
@@ -81,6 +85,7 @@ matrix:
81
85
- xsel
82
86
- python : 3.5
83
87
env :
88
+ - PYTHON_VERSION=3.5
84
89
- JOB_NAME : " 35_nslow"
85
90
- NOSE_ARGS="not slow and not network and not disabled"
86
91
- FULL_DEPS=true
@@ -95,6 +100,7 @@ matrix:
95
100
# In allow_failures
96
101
- python : 2.7
97
102
env :
103
+ - PYTHON_VERSION=2.7
98
104
- JOB_NAME : " 27_slow"
99
105
- JOB_TAG=_SLOW
100
106
- NOSE_ARGS="slow and not network and not disabled"
@@ -104,6 +110,7 @@ matrix:
104
110
# In allow_failures
105
111
- python : 3.4
106
112
env :
113
+ - PYTHON_VERSION=3.4
107
114
- JOB_NAME : " 34_slow"
108
115
- JOB_TAG=_SLOW
109
116
- NOSE_ARGS="slow and not network and not disabled"
@@ -118,16 +125,31 @@ matrix:
118
125
# In allow_failures
119
126
- python : 2.7
120
127
env :
128
+ - PYTHON_VERSION=2.7
121
129
- JOB_NAME : " 27_build_test_conda"
122
130
- JOB_TAG=_BUILD_TEST
123
131
- NOSE_ARGS="not slow and not disabled"
124
132
- FULL_DEPS=true
125
133
- BUILD_TEST=true
126
134
- CACHE_NAME="27_build_test_conda"
127
135
- USE_CACHE=true
136
+ # In allow_failures
137
+ - python : 3.6-dev
138
+ env :
139
+ - PYTHON_VERSION=3.6
140
+ - JOB_NAME : " 36_dev"
141
+ - JOB_TAG=_DEV
142
+ - NOSE_ARGS="not slow and not network and not disabled"
143
+ - PANDAS_TESTING_MODE="deprecate"
144
+ addons :
145
+ apt :
146
+ packages :
147
+ - libatlas-base-dev
148
+ - gfortran
128
149
# In allow_failures
129
150
- python : 3.5
130
151
env :
152
+ - PYTHON_VERSION=3.5
131
153
- JOB_NAME : " 35_numpy_dev"
132
154
- JOB_TAG=_NUMPY_DEV
133
155
- NOSE_ARGS="not slow and not network and not disabled"
@@ -142,6 +164,7 @@ matrix:
142
164
# In allow_failures
143
165
- python : 2.7
144
166
env :
167
+ - PYTHON_VERSION=2.7
145
168
- JOB_NAME : " 27_nslow_nnet_COMPAT"
146
169
- NOSE_ARGS="not slow and not network and not disabled"
147
170
- LOCALE_OVERRIDE="it_IT.UTF-8"
@@ -156,6 +179,7 @@ matrix:
156
179
# In allow_failures
157
180
- python : 3.5
158
181
env :
182
+ - PYTHON_VERSION=3.5
159
183
- JOB_NAME : " 35_ascii"
160
184
- JOB_TAG=_ASCII
161
185
- NOSE_ARGS="not slow and not network and not disabled"
@@ -165,6 +189,7 @@ matrix:
165
189
# In allow_failures
166
190
- python : 2.7
167
191
env :
192
+ - PYTHON_VERSION=2.7
168
193
- JOB_NAME : " doc_build"
169
194
- FULL_DEPS=true
170
195
- DOC_BUILD=true
@@ -174,6 +199,7 @@ matrix:
174
199
allow_failures :
175
200
- python : 2.7
176
201
env :
202
+ - PYTHON_VERSION=2.7
177
203
- JOB_NAME : " 27_slow"
178
204
- JOB_TAG=_SLOW
179
205
- NOSE_ARGS="slow and not network and not disabled"
@@ -182,6 +208,7 @@ matrix:
182
208
- USE_CACHE=true
183
209
- python : 3.4
184
210
env :
211
+ - PYTHON_VERSION=3.4
185
212
- JOB_NAME : " 34_slow"
186
213
- JOB_TAG=_SLOW
187
214
- NOSE_ARGS="slow and not network and not disabled"
@@ -195,28 +222,43 @@ matrix:
195
222
- xsel
196
223
- python : 2.7
197
224
env :
225
+ - PYTHON_VERSION=2.7
198
226
- JOB_NAME : " 27_build_test_conda"
199
227
- JOB_TAG=_BUILD_TEST
200
228
- NOSE_ARGS="not slow and not disabled"
201
229
- FULL_DEPS=true
202
230
- BUILD_TEST=true
203
231
- CACHE_NAME="27_build_test_conda"
204
232
- USE_CACHE=true
205
- - python : 3.5
233
+ - python : 3.6-dev
206
234
env :
207
- - JOB_NAME : " 35_numpy_dev"
208
- - JOB_TAG=_NUMPY_DEV
235
+ - PYTHON_VERSION=3.6
236
+ - JOB_NAME : " 36_dev"
237
+ - JOB_TAG=_DEV
209
238
- NOSE_ARGS="not slow and not network and not disabled"
210
239
- PANDAS_TESTING_MODE="deprecate"
211
- - CACHE_NAME="35_numpy_dev"
212
- - USE_CACHE=true
240
+ addons :
241
+ apt :
242
+ packages :
243
+ - libatlas-base-dev
244
+ - gfortran
245
+ - python : 3.5
246
+ env :
247
+ - PYTHON_VERSION=3.5
248
+ - JOB_NAME : " 35_numpy_dev"
249
+ - JOB_TAG=_NUMPY_DEV
250
+ - NOSE_ARGS="not slow and not network and not disabled"
251
+ - PANDAS_TESTING_MODE="deprecate"
252
+ - CACHE_NAME="35_numpy_dev"
253
+ - USE_CACHE=true
213
254
addons :
214
255
apt :
215
256
packages :
216
257
- libatlas-base-dev
217
258
- gfortran
218
259
- python : 2.7
219
260
env :
261
+ - PYTHON_VERSION=2.7
220
262
- JOB_NAME : " 27_nslow_nnet_COMPAT"
221
263
- NOSE_ARGS="not slow and not network and not disabled"
222
264
- LOCALE_OVERRIDE="it_IT.UTF-8"
@@ -230,6 +272,7 @@ matrix:
230
272
- language-pack-it
231
273
- python : 3.5
232
274
env :
275
+ - PYTHON_VERSION=3.5
233
276
- JOB_NAME : " 35_ascii"
234
277
- JOB_TAG=_ASCII
235
278
- NOSE_ARGS="not slow and not network and not disabled"
@@ -238,6 +281,7 @@ matrix:
238
281
- USE_CACHE=true
239
282
- python : 2.7
240
283
env :
284
+ - PYTHON_VERSION=2.7
241
285
- JOB_NAME : " doc_build"
242
286
- FULL_DEPS=true
243
287
- DOC_BUILD=true
0 commit comments