Skip to content

Commit 391ab46

Browse files
committed
Merge branch 'master' of github.com:pandas-dev/pandas into resample_bug_fix
2 parents 7768e0f + 6141754 commit 391ab46

File tree

321 files changed

+20722
-37817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+20722
-37817
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
#### A small, complete example of the issue
1+
#### Code Sample, a copy-pastable example if possible
22

33
```python
44
# Your code here
55

66
```
7+
#### Problem description
8+
9+
[this should explain **why** the current behaviour is a problem and why the expected output is a better solution.]
710

811
#### Expected Output
912

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
*.class
2828
*.dll
2929
*.exe
30+
*.pxi
3031
*.o
3132
*.py[ocd]
3233
*.so

.travis.yml

Lines changed: 92 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,9 @@ cache:
1414

1515
env:
1616
global:
17-
# scatterci API key
18-
#- secure: "Bx5umgo6WjuGY+5XFa004xjCiX/vq0CyMZ/ETzcs7EIBI1BE/0fIDXOoWhoxbY9HPfdPGlDnDgB9nGqr5wArO2s+BavyKBWg6osZ3dmkfuJPMOWeyCa92EeP+sfKw8e5HSU5MizW9e319wHWOF/xkzdHR7T67Qd5erhv91x4DnQ="
19-
# ironcache API key
20-
#- secure: "e4eEFn9nDQc3Xa5BWYkzfX37jaWVq89XidVX+rcCNEr5OlOImvveeXnF1IzbRXznH4Sv0YsLwUd8RGUWOmyCvkONq/VJeqCHWtTMyfaCIdqSyhIP9Odz8r9ahch+Y0XFepBey92AJHmlnTh+2GjCDgIiqq4fzglojnp56Vg1ojA="
21-
#- secure: "CjmYmY5qEu3KrvMtel6zWFEtMq8ORBeS1S1odJHnjQpbwT1KY2YFZRVlLphfyDQXSz6svKUdeRrCNp65baBzs3DQNA8lIuXGIBYFeJxqVGtYAZZs6+TzBPfJJK798sGOj5RshrOJkFG2rdlWNuTq/XphI0JOrN3nPUkRrdQRpAw="
22-
# pandas-docs-bot GH
23-
- secure: "PCzUFR8CHmw9lH84p4ygnojdF7Z8U5h7YfY0RyT+5K/aiQ1ZTU3ZkDTPI0/rR5FVMxsEEKEQKMcc5fvqW0PeD7Q2wRmluloKgT9w4EVEJ1ppKf7lITPcvZR2QgVOvjv4AfDtibLHFNiaSjzoqyJVjM4igjOu8WTlF3JfZcmOQjQ="
17+
18+
# pandas-docs-travis GH
19+
- secure: "YvvTc+FrSYHgdxqoxn9s8VOaCWjvZzlkaf6k55kkmQqCYR9dPiLMsot1F96/N7o3YlD1s0znPQCak93Du8HHi/8809zAXloTaMSZrWz4R4qn96xlZFRE88O/w/Z1t3VVYpKX3MHlCggBc8MtXrqmvWKJMAqXyysZ4TTzoiJDPvE="
2420

2521
git:
2622
# for cloning
@@ -34,6 +30,7 @@ matrix:
3430
compiler: clang
3531
osx_image: xcode6.4
3632
env:
33+
- PYTHON_VERSION=3.5
3734
- JOB_NAME: "35_osx"
3835
- NOSE_ARGS="not slow and not network and not disabled"
3936
- BUILD_TYPE=conda
@@ -43,6 +40,7 @@ matrix:
4340
- USE_CACHE=true
4441
- python: 2.7
4542
env:
43+
- PYTHON_VERSION=2.7
4644
- JOB_NAME: "27_slow_nnet_LOCALE"
4745
- NOSE_ARGS="slow and not network and not disabled"
4846
- LOCALE_OVERRIDE="zh_CN.UTF-8"
@@ -56,6 +54,7 @@ matrix:
5654
- language-pack-zh-hans
5755
- python: 2.7
5856
env:
57+
- PYTHON_VERSION=2.7
5958
- JOB_NAME: "27_nslow"
6059
- NOSE_ARGS="not slow and not disabled"
6160
- FULL_DEPS=true
@@ -67,20 +66,9 @@ matrix:
6766
apt:
6867
packages:
6968
- python-gtk2
70-
- python: 3.4
71-
env:
72-
- JOB_NAME: "34_nslow"
73-
- NOSE_ARGS="not slow and not disabled"
74-
- FULL_DEPS=true
75-
- CLIPBOARD=xsel
76-
- CACHE_NAME="34_nslow"
77-
- USE_CACHE=true
78-
addons:
79-
apt:
80-
packages:
81-
- xsel
8269
- python: 3.5
8370
env:
71+
- PYTHON_VERSION=3.5
8472
- JOB_NAME: "35_nslow"
8573
- NOSE_ARGS="not slow and not network and not disabled"
8674
- FULL_DEPS=true
@@ -92,42 +80,86 @@ matrix:
9280
apt:
9381
packages:
9482
- xsel
83+
- python: 3.6
84+
env:
85+
- PYTHON_VERSION=3.6
86+
- JOB_NAME: "36"
87+
- NOSE_ARGS="not slow and not network and not disabled"
88+
- PANDAS_TESTING_MODE="deprecate"
89+
addons:
90+
apt:
91+
packages:
92+
- libatlas-base-dev
93+
- gfortran
9594
# In allow_failures
9695
- python: 2.7
9796
env:
97+
- PYTHON_VERSION=2.7
98+
- JOB_NAME: "27_nslow_nnet_COMPAT"
99+
- NOSE_ARGS="not slow and not network and not disabled"
100+
- LOCALE_OVERRIDE="it_IT.UTF-8"
101+
- INSTALL_TEST=true
102+
- JOB_TAG=_COMPAT
103+
- CACHE_NAME="27_nslow_nnet_COMPAT"
104+
- USE_CACHE=true
105+
addons:
106+
apt:
107+
packages:
108+
- language-pack-it
109+
# In allow_failures
110+
- python: 2.7
111+
env:
112+
- PYTHON_VERSION=2.7
98113
- JOB_NAME: "27_slow"
99114
- JOB_TAG=_SLOW
100115
- NOSE_ARGS="slow and not network and not disabled"
101116
- FULL_DEPS=true
102117
- CACHE_NAME="27_slow"
103118
- USE_CACHE=true
119+
# In allow_failures
120+
- python: 2.7
121+
env:
122+
- PYTHON_VERSION=2.7
123+
- JOB_NAME: "27_build_test_conda"
124+
- JOB_TAG=_BUILD_TEST
125+
- NOSE_ARGS="not slow and not disabled"
126+
- FULL_DEPS=true
127+
- BUILD_TEST=true
128+
- CACHE_NAME="27_build_test_conda"
129+
- USE_CACHE=true
104130
# In allow_failures
105131
- python: 3.4
106132
env:
107-
- JOB_NAME: "34_slow"
108-
- JOB_TAG=_SLOW
109-
- NOSE_ARGS="slow and not network and not disabled"
133+
- PYTHON_VERSION=3.4
134+
- JOB_NAME: "34_nslow"
135+
- NOSE_ARGS="not slow and not disabled"
110136
- FULL_DEPS=true
111137
- CLIPBOARD=xsel
112-
- CACHE_NAME="34_slow"
138+
- CACHE_NAME="34_nslow"
113139
- USE_CACHE=true
114140
addons:
115141
apt:
116142
packages:
117143
- xsel
118144
# In allow_failures
119-
- python: 2.7
145+
- python: 3.4
120146
env:
121-
- JOB_NAME: "27_build_test_conda"
122-
- JOB_TAG=_BUILD_TEST
123-
- NOSE_ARGS="not slow and not disabled"
147+
- PYTHON_VERSION=3.4
148+
- JOB_NAME: "34_slow"
149+
- JOB_TAG=_SLOW
150+
- NOSE_ARGS="slow and not network and not disabled"
124151
- FULL_DEPS=true
125-
- BUILD_TEST=true
126-
- CACHE_NAME="27_build_test_conda"
152+
- CLIPBOARD=xsel
153+
- CACHE_NAME="34_slow"
127154
- USE_CACHE=true
155+
addons:
156+
apt:
157+
packages:
158+
- xsel
128159
# In allow_failures
129160
- python: 3.5
130161
env:
162+
- PYTHON_VERSION=3.5
131163
- JOB_NAME: "35_numpy_dev"
132164
- JOB_TAG=_NUMPY_DEV
133165
- NOSE_ARGS="not slow and not network and not disabled"
@@ -139,32 +171,20 @@ matrix:
139171
packages:
140172
- libatlas-base-dev
141173
- gfortran
142-
# In allow_failures
143-
- python: 2.7
144-
env:
145-
- JOB_NAME: "27_nslow_nnet_COMPAT"
146-
- NOSE_ARGS="not slow and not network and not disabled"
147-
- LOCALE_OVERRIDE="it_IT.UTF-8"
148-
- INSTALL_TEST=true
149-
- JOB_TAG=_COMPAT
150-
- CACHE_NAME="27_nslow_nnet_COMPAT"
151-
- USE_CACHE=true
152-
addons:
153-
apt:
154-
packages:
155-
- language-pack-it
156174
# In allow_failures
157175
- python: 3.5
158176
env:
177+
- PYTHON_VERSION=3.5
159178
- JOB_NAME: "35_ascii"
160179
- JOB_TAG=_ASCII
161180
- NOSE_ARGS="not slow and not network and not disabled"
162181
- LOCALE_OVERRIDE="C"
163182
- CACHE_NAME="35_ascii"
164183
- USE_CACHE=true
165184
# In allow_failures
166-
- python: 2.7
185+
- python: 3.5
167186
env:
187+
- PYTHON_VERSION=3.5
168188
- JOB_NAME: "doc_build"
169189
- FULL_DEPS=true
170190
- DOC_BUILD=true
@@ -174,6 +194,7 @@ matrix:
174194
allow_failures:
175195
- python: 2.7
176196
env:
197+
- PYTHON_VERSION=2.7
177198
- JOB_NAME: "27_slow"
178199
- JOB_TAG=_SLOW
179200
- NOSE_ARGS="slow and not network and not disabled"
@@ -182,6 +203,7 @@ matrix:
182203
- USE_CACHE=true
183204
- python: 3.4
184205
env:
206+
- PYTHON_VERSION=3.4
185207
- JOB_NAME: "34_slow"
186208
- JOB_TAG=_SLOW
187209
- NOSE_ARGS="slow and not network and not disabled"
@@ -195,28 +217,44 @@ matrix:
195217
- xsel
196218
- python: 2.7
197219
env:
220+
- PYTHON_VERSION=2.7
198221
- JOB_NAME: "27_build_test_conda"
199222
- JOB_TAG=_BUILD_TEST
200223
- NOSE_ARGS="not slow and not disabled"
201224
- FULL_DEPS=true
202225
- BUILD_TEST=true
203226
- CACHE_NAME="27_build_test_conda"
204227
- USE_CACHE=true
228+
- python: 3.4
229+
env:
230+
- PYTHON_VERSION=3.4
231+
- JOB_NAME: "34_nslow"
232+
- NOSE_ARGS="not slow and not disabled"
233+
- FULL_DEPS=true
234+
- CLIPBOARD=xsel
235+
- CACHE_NAME="34_nslow"
236+
- USE_CACHE=true
237+
addons:
238+
apt:
239+
packages:
240+
- xsel
205241
- python: 3.5
206242
env:
207-
- JOB_NAME: "35_numpy_dev"
208-
- JOB_TAG=_NUMPY_DEV
209-
- NOSE_ARGS="not slow and not network and not disabled"
210-
- PANDAS_TESTING_MODE="deprecate"
211-
- CACHE_NAME="35_numpy_dev"
212-
- USE_CACHE=true
243+
- PYTHON_VERSION=3.5
244+
- JOB_NAME: "35_numpy_dev"
245+
- JOB_TAG=_NUMPY_DEV
246+
- NOSE_ARGS="not slow and not network and not disabled"
247+
- PANDAS_TESTING_MODE="deprecate"
248+
- CACHE_NAME="35_numpy_dev"
249+
- USE_CACHE=true
213250
addons:
214251
apt:
215252
packages:
216253
- libatlas-base-dev
217254
- gfortran
218255
- python: 2.7
219256
env:
257+
- PYTHON_VERSION=2.7
220258
- JOB_NAME: "27_nslow_nnet_COMPAT"
221259
- NOSE_ARGS="not slow and not network and not disabled"
222260
- LOCALE_OVERRIDE="it_IT.UTF-8"
@@ -230,14 +268,16 @@ matrix:
230268
- language-pack-it
231269
- python: 3.5
232270
env:
271+
- PYTHON_VERSION=3.5
233272
- JOB_NAME: "35_ascii"
234273
- JOB_TAG=_ASCII
235274
- NOSE_ARGS="not slow and not network and not disabled"
236275
- LOCALE_OVERRIDE="C"
237276
- CACHE_NAME="35_ascii"
238277
- USE_CACHE=true
239-
- python: 2.7
278+
- python: 3.5
240279
env:
280+
- PYTHON_VERSION=3.5
241281
- JOB_NAME: "doc_build"
242282
- FULL_DEPS=true
243283
- DOC_BUILD=true
@@ -249,7 +289,7 @@ before_install:
249289
- echo "before_install"
250290
- source ci/travis_process_gbq_encryption.sh
251291
- echo $VIRTUAL_ENV
252-
- export PATH="$HOME/miniconda/bin:$PATH"
292+
- export PATH="$HOME/miniconda3/bin:$PATH"
253293
- df -h
254294
- date
255295
- pwd

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ install:
8080
- cmd: conda config --set ssl_verify false
8181

8282
# add the pandas channel *before* defaults to have defaults take priority
83+
- cmd: conda config --add channels conda-forge
8384
- cmd: conda config --add channels pandas
8485
- cmd: conda config --remove channels defaults
8586
- cmd: conda config --add channels defaults

0 commit comments

Comments
 (0)