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: doc/source/whatsnew/v1.3.2.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,9 @@ Bug fixes
32
32
~~~~~~~~~
33
33
- Bug in :meth:`pandas.read_excel` modifies the dtypes dictionary when reading a file with duplicate columns (:issue:`42462`)
34
34
- 1D slices over extension types turn into N-dimensional slices over ExtensionArrays (:issue:`42430`)
35
+
- Fixed bug in :meth:`Series.rolling` and :meth:`DataFrame.rolling` not calculating window bounds correctly for the first row when ``center=True`` and ``window`` is an offset that covers all the rows (:issue:`42753`)
35
36
- :meth:`.Styler.hide_columns` now hides the index name header row as well as column headers (:issue:`42101`)
37
+
- :meth:`.Styler.set_sticky` has amended CSS to control the column/index names and ensure the correct sticky positions (:issue:`42537`)
36
38
- Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode (:issue:`42866`)
37
39
-
38
40
@@ -42,7 +44,7 @@ Bug fixes
42
44
43
45
Other
44
46
~~~~~
45
-
-
47
+
-:meth:`pandas.read_parquet` now supports reading nullable dtypes with ``fastparquet`` versions above 0.7.1.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.4.0.rst
+1
Original file line number
Diff line number
Diff line change
@@ -162,6 +162,7 @@ Deprecations
162
162
- Deprecated ignoring missing labels when indexing with a sequence of labels on a level of a MultiIndex (:issue:`42351`)
163
163
- Creating an empty Series without a dtype will now raise a more visible ``FutureWarning`` instead of a ``DeprecationWarning`` (:issue:`30017`)
164
164
- Deprecated the 'kind' argument in :meth:`Index.get_slice_bound`, :meth:`Index.slice_indexer`, :meth:`Index.slice_locs`; in a future version passing 'kind' will raise (:issue:`42857`)
165
+
- Deprecated :meth:`Index.reindex` with a non-unique index (:issue:`42568`)
0 commit comments