File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ .. _contributing :
2+
13**********************
24Contributing to pandas
35**********************
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ Improvements to existing features
103103 for rapidly implementing. (:issue: `5490 `,:issue: `6021 `)
104104 - add ability to recognize '%p' format code (am/pm) to date parsers when the specific format
105105 is supplied (:issue: `5361 `)
106+ - Fix performance regression in JSON IO (:issue: `5765 `)
106107
107108.. _release.bug_fixes-0.13.1 :
108109
@@ -119,7 +120,6 @@ Bug Fixes
119120 - Regresssion in handling of empty Series as indexers to Series (:issue: `5877 `)
120121 - Bug in internal caching, related to (:issue: `5727 `)
121122 - Testing bug in reading json/msgpack from a non-filepath on windows under py3 (:issue: `5874 `)
122- - Fix performance regression in JSON IO (:issue: `5765 `)
123123 - Bug when assigning to .ix[tuple(...)] (:issue: `5896 `)
124124 - Bug in fully reindexing a Panel (:issue: `5905 `)
125125 - Bug in idxmin/max with object dtypes (:issue: `5914 `)
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Highlights include:
1414- enhanced Panel :meth:`~pandas.Panel.apply` method
1515- :ref:`Tutorials<tutorials>`, a guide to community developed pandas tutorials.
1616- :ref:`Pandas Ecosystem<ecosystem>`, a guide to complementary projects built on top of pandas.
17+ - :ref:`Contributing<contributing>`, a guide to how to contribute to the pandas codebase and documentation.
18+ - updated building/ci tools, including a consolidated ci see `here <http://scatterci.github.io/ScatterCI-Pandas/>`__, thanks to @y-p.
1719
1820.. warning::
1921
@@ -234,6 +236,7 @@ Performance improvements for 0.13.1
234236- ``dtypes/ftypes`` methods (:issue:`5968`)
235237- indexing with object dtypes (:issue:`5968`)
236238- ``DataFrame.apply`` (:issue:`6013`)
239+ - Regression in JSON IO (:issue:`5765`)
237240
238241Experimental
239242~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments