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
+
1
3
**********************
2
4
Contributing to pandas
3
5
**********************
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ Improvements to existing features
103
103
for rapidly implementing. (:issue: `5490 `,:issue: `6021 `)
104
104
- add ability to recognize '%p' format code (am/pm) to date parsers when the specific format
105
105
is supplied (:issue: `5361 `)
106
+ - Fix performance regression in JSON IO (:issue: `5765 `)
106
107
107
108
.. _release.bug_fixes-0.13.1 :
108
109
@@ -119,7 +120,6 @@ Bug Fixes
119
120
- Regresssion in handling of empty Series as indexers to Series (:issue: `5877 `)
120
121
- Bug in internal caching, related to (:issue: `5727 `)
121
122
- 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 `)
123
123
- Bug when assigning to .ix[tuple(...)] (:issue: `5896 `)
124
124
- Bug in fully reindexing a Panel (:issue: `5905 `)
125
125
- 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:
14
14
- enhanced Panel :meth:`~pandas.Panel.apply` method
15
15
- :ref:`Tutorials<tutorials>`, a guide to community developed pandas tutorials.
16
16
- :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.
17
19
18
20
.. warning::
19
21
@@ -234,6 +236,7 @@ Performance improvements for 0.13.1
234
236
- ``dtypes/ftypes`` methods (:issue:`5968`)
235
237
- indexing with object dtypes (:issue:`5968`)
236
238
- ``DataFrame.apply`` (:issue:`6013`)
239
+ - Regression in JSON IO (:issue:`5765`)
237
240
238
241
Experimental
239
242
~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments