You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -233,3 +233,5 @@ You can also triage issues which may include reproducing bug reports, or asking
233
233
Or maybe through using pandas you have an idea of your own or are looking for something in the documentation and thinking ‘this can be improved’...you can do something about it!
234
234
235
235
Feel free to ask questions on the [mailing list](https://groups.google.com/forum/?fromgroups#!forum/pydata) or on [Gitter](https://gitter.im/pydata/pandas).
236
+
237
+
As contributors and maintainers to this project, you are expected to abide by pandas' code of conduct. More information can be found at: [Contributor Code of Conduct](https://github.com/pandas-dev/pandas/blob/master/.github/CODE_OF_CONDUCT.md)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.25.1.rst
+10-10
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,7 @@ Bug fixes
25
25
Categorical
26
26
^^^^^^^^^^^
27
27
28
-
-
29
-
-
28
+
- Bug in :meth:`Categorical.fillna` would replace all values, not just those that are ``NaN`` (:issue:`26215`)
30
29
-
31
30
32
31
Datetimelike
@@ -83,7 +82,8 @@ Indexing
83
82
^^^^^^^^
84
83
85
84
- Bug in partial-string indexing returning a NumPy array rather than a ``Series`` when indexing with a scalar like ``.loc['2015']`` (:issue:`27516`)
86
-
-
85
+
- Break reference cycle involving :class:`Index` and other index classes to allow garbage collection of index objects without running the GC. (:issue:`27585`, :issue:`27840`)
86
+
- Fix regression in assigning values to a single column of a DataFrame with a ``MultiIndex`` columns (:issue:`27841`).
87
87
-
88
88
89
89
Missing
@@ -103,36 +103,36 @@ MultiIndex
103
103
I/O
104
104
^^^
105
105
106
-
-
107
-
-
106
+
- Avoid calling ``S3File.s3`` when reading parquet, as this was removed in s3fs version 0.3.0 (:issue:`27756`)
107
+
- Better error message when a negative header is passed in :func:`pandas.read_csv` (:issue:`27779`)
108
108
-
109
109
110
110
Plotting
111
111
^^^^^^^^
112
112
113
113
- Added a pandas_plotting_backends entrypoint group for registering plot backends. See :ref:`extending.plotting-backends` for more (:issue:`26747`).
114
-
-
114
+
- Fix compatibility issue with matplotlib when passing a pandas ``Index`` to a plot call (:issue:`27775`).
115
115
-
116
116
117
117
Groupby/resample/rolling
118
118
^^^^^^^^^^^^^^^^^^^^^^^^
119
119
120
120
- Bug in :meth:`pandas.core.groupby.DataFrameGroupBy.transform` where applying a timezone conversion lambda function would drop timezone information (:issue:`27496`)
121
121
- Bug in windowing over read-only arrays (:issue:`27766`)
122
-
-
122
+
- Fixed segfault in `pandas.core.groupby.DataFrameGroupBy.quantile` when an invalid quantile was passed (:issue:`27470`)
123
123
-
124
124
125
125
Reshaping
126
126
^^^^^^^^^
127
127
128
128
- A ``KeyError`` is now raised if ``.unstack()`` is called on a :class:`Series` or :class:`DataFrame` with a flat :class:`Index` passing a name which is not the correct one (:issue:`18303`)
129
-
- Bug in :meth:`DataFrame.crosstab` when ``margins`` set to ``True`` and ``normalize`` is not ``False``, an error is raised. (:issue:`27500`)
129
+
- Bug in :meth:`DataFrame.crosstab` when ``margins`` set to ``True`` and ``normalize`` is not ``False``, an error is raised. (:issue:`27500`)
130
130
- :meth:`DataFrame.join` now suppresses the ``FutureWarning`` when the sort parameter is specified (:issue:`21952`)
131
-
-
131
+
- Bug in :meth:`DataFrame.join` raising with readonly arrays (:issue:`27943`)
132
132
133
133
Sparse
134
134
^^^^^^
135
-
135
+
- Bug in reductions for :class:`Series` with Sparse dtypes (:issue:`27080`)
0 commit comments