Skip to content

Commit d68ed2d

Browse files
committed
Merge tag 'v0.16.1' into debian
Version 0.16.1 * tag 'v0.16.1': (222 commits) RLS: v0.16.1 final DOC: missed merge in v0.16.1 whatsnew DOC: add v0.17.0.txt whatsnew (not in index yet though) BUG: Series.fillna() raises if given a numerically convertible string DOC: add docstring for PeriodIndex.asfreq more fixups Index repr: allow unequal number of elements on one line Change Index repr to adjust to string length fixup for CategoricalIndex merge formatting MultiIndex ENH: repr now shows index name pandas-dev#6482 DOC: prepare for 0.16.1 release DOC: edits in v0.16.1 whatsnew DEPR: Deprecate str.split return_type pandas-dev#9847 fix the inconsistency between code and description ENH: support str translate for StringMethods ENH: support StringMethods index and rindex Release note [ci skip] TST: using - rather than difference in tools/plotting.py DOC: additional whatsnew ENH: support __radd__ operation on Index (GH10083) ...
2 parents 2965e13 + ca9eefc commit d68ed2d

File tree

147 files changed

+16687
-3443
lines changed

Some content is hidden

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

147 files changed

+16687
-3443
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dist
5555
######################
5656
.directory
5757
.gdb_history
58-
.DS_Store?
58+
.DS_Store
5959
ehthumbs.db
6060
Icon?
6161
Thumbs.db

.travis.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ matrix:
2222
- LOCALE_OVERRIDE="it_IT.UTF-8"
2323
- BUILD_TYPE=conda
2424
- JOB_NAME: "26_nslow_nnet"
25+
- INSTALL_TEST=true
2526
- python: 2.7
2627
env:
2728
- NOSE_ARGS="slow and not network and not disabled"
@@ -30,6 +31,24 @@ matrix:
3031
- JOB_TAG=_LOCALE
3132
- BUILD_TYPE=conda
3233
- JOB_NAME: "27_slow_nnet_LOCALE"
34+
- python: 2.7
35+
env:
36+
- NOSE_ARGS="not slow and not disabled"
37+
- FULL_DEPS=true
38+
- CLIPBOARD_GUI=gtk2
39+
- BUILD_TYPE=conda
40+
- JOB_NAME: "27_build_test"
41+
- JOB_TAG=_BUILD_TEST
42+
- BUILD_TEST=true
43+
- python: 2.7
44+
env:
45+
- NOSE_ARGS="not slow and not disabled"
46+
- FULL_DEPS=true
47+
- CLIPBOARD_GUI=gtk2
48+
- BUILD_TYPE=pydata
49+
- JOB_NAME: "27_build_test"
50+
- JOB_TAG=_BUILD_TEST
51+
- BUILD_TEST=true
3352
- python: 2.7
3453
env:
3554
- NOSE_ARGS="not slow and not disabled"
@@ -115,6 +134,24 @@ matrix:
115134
- NUMPY_BUILD=master
116135
- BUILD_TYPE=pydata
117136
- PANDAS_TESTING_MODE="deprecate"
137+
- python: 2.7
138+
env:
139+
- NOSE_ARGS="not slow and not disabled"
140+
- FULL_DEPS=true
141+
- CLIPBOARD_GUI=gtk2
142+
- BUILD_TYPE=conda
143+
- JOB_NAME: "27_build_test"
144+
- JOB_TAG=_BUILD_TEST
145+
- BUILD_TEST=true
146+
- python: 2.7
147+
env:
148+
- NOSE_ARGS="not slow and not disabled"
149+
- FULL_DEPS=true
150+
- CLIPBOARD_GUI=gtk2
151+
- BUILD_TYPE=pydata
152+
- JOB_NAME: "27_build_test"
153+
- JOB_TAG=_BUILD_TEST
154+
- BUILD_TEST=true
118155

119156
before_install:
120157
- echo "before_install"
@@ -147,6 +184,7 @@ script:
147184
# nothing here, or failed tests won't fail travis
148185

149186
after_script:
187+
- ci/install_test.sh
150188
- if [ -f /tmp/doc.log ]; then cat /tmp/doc.log; fi
151189
- source activate pandas && ci/print_versions.py
152190
- ci/print_skipped.py /tmp/nosetests.xml

0 commit comments

Comments
 (0)