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
Merge remote-tracking branch 'upstream/master' into to_html-to_string
* upstream/master:
BUG: Don't over-optimize memory with jagged CSV (pandas-dev#23527)
DEPR: Deprecate usecols as int in read_excel (pandas-dev#23635)
More helpful Stata string length error. (pandas-dev#23629)
BUG: astype fill_value for SparseArray.astype (pandas-dev#23547)
CLN: datetimelike arrays: isort, small reorg (pandas-dev#23587)
CI: Check in the CI that assert_raises_regex is not being used (pandas-dev#23627)
CLN:Remove unused **kwargs from user facing methods (pandas-dev#23249)
DOC: Enhancing pivot / reshape docs (pandas-dev#21038)
TST: Fix xfailing DataFrame arithmetic tests by transposing (pandas-dev#23620)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.24.0.txt
+2
Original file line number
Diff line number
Diff line change
@@ -972,6 +972,7 @@ Deprecations
972
972
- The class ``FrozenNDArray`` has been deprecated. When unpickling, ``FrozenNDArray`` will be unpickled to ``np.ndarray`` once this class is removed (:issue:`9031`)
973
973
- Deprecated the `nthreads` keyword of :func:`pandas.read_feather` in favor of
974
974
`use_threads` to reflect the changes in pyarrow 0.11.0. (:issue:`23053`)
975
+
- :func:`pandas.read_excel` has deprecated accepting ``usecols`` as an integer. Please pass in a list of ints from 0 to ``usecols`` inclusive instead (:issue:`23527`)
975
976
- Constructing a :class:`TimedeltaIndex` from data with ``datetime64``-dtyped data is deprecated, will raise ``TypeError`` in a future version (:issue:`23539`)
@@ -1300,6 +1301,7 @@ Notice how we now instead output ``np.nan`` itself instead of a stringified form
1300
1301
- :func:`read_excel()` will correctly show the deprecation warning for previously deprecated ``sheetname`` (:issue:`17994`)
1301
1302
- :func:`read_csv()` and func:`read_table()` will throw ``UnicodeError`` and not coredump on badly encoded strings (:issue:`22748`)
1302
1303
- :func:`read_csv()` will correctly parse timezone-aware datetimes (:issue:`22256`)
1304
+
- Bug in :func:`read_csv()` in which memory management was prematurely optimized for the C engine when the data was being read in chunks (:issue:`23509`)
1303
1305
- :func:`read_sas()` will parse numbers in sas7bdat-files that have width less than 8 bytes correctly. (:issue:`21616`)
1304
1306
- :func:`read_sas()` will correctly parse sas7bdat files with many columns (:issue:`22628`)
1305
1307
- :func:`read_sas()` will correctly parse sas7bdat files with data page types having also bit 7 set (so page type is 128 + 256 = 384) (:issue:`16615`)
0 commit comments