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
- :func:`to_parquet` now appropriately handles the ``schema`` argument for user defined schemas in the pyarrow engine. (:issue: `30270`)
223
214
- DataFrame constructor preserve `ExtensionArray` dtype with `ExtensionArray` (:issue:`11363`)
224
215
- :meth:`DataFrame.sort_values` and :meth:`Series.sort_values` have gained ``ignore_index`` keyword to be able to reset index after sorting (:issue:`30114`)
225
-
- :meth:`DataFrame.to_markdown` and :meth:`Series.to_markdown` added (:issue:`11052`)
226
216
- :meth:`DataFrame.sort_index` and :meth:`Series.sort_index` have gained ``ignore_index`` keyword to reset index (:issue:`30114`)
227
217
- :meth:`DataFrame.drop_duplicates` has gained ``ignore_index`` keyword to reset index (:issue:`30114`)
228
218
- Added new writer for exporting Stata dta files in version 118, ``StataWriter118``. This format supports exporting strings containing Unicode characters (:issue:`23573`)
@@ -231,7 +221,6 @@ Other enhancements
231
221
- :meth:`Timestamp.fromisocalendar` is now compatible with python 3.8 and above (:issue:`28115`)
232
222
233
223
234
-
235
224
Build Changes
236
225
^^^^^^^^^^^^^
237
226
@@ -240,6 +229,8 @@ cythonized files in the source distribution uploaded to PyPI (:issue:`28341`, :i
240
229
a built distribution (wheel) or via conda, this shouldn't have any effect on you. If you're building pandas from
241
230
source, you should no longer need to install Cython into your build environment before calling ``pip install pandas``.
@@ -458,6 +449,13 @@ consistent with the behaviour of :class:`DataFrame` and :class:`Index`.
458
449
DeprecationWarning: The default dtype for empty Series will be 'object' instead of 'float64' in a future version. Specify a dtype explicitly to silence this warning.
459
450
Series([], dtype: float64)
460
451
452
+
.. _whatsnew_1000.api_breaking.python:
453
+
454
+
Increased minimum version for Python
455
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
456
+
457
+
Pandas 1.0.0 supports Python 3.6.1 and higher (:issue:`29212`).
458
+
461
459
.. _whatsnew_1000.api_breaking.deps:
462
460
463
461
Increased minimum versions for dependencies
@@ -555,7 +553,9 @@ Documentation Improvements
555
553
^^^^^^^^^^^^^^^^^^^^^^^^^^
556
554
557
555
- Added new section on :ref:`scale` (:issue:`28315`).
558
-
- Added sub-section Query MultiIndex in IO tools user guide (:issue:`28791`)
556
+
- Added sub-section on :ref:`io.query_multi` for HDF5 datasets (:issue:`28791`).
``SparseSeries``, ``SparseDataFrame`` and the ``DataFrame.to_sparse`` method
624
626
have been removed (:issue:`28425`). We recommend using a ``Series`` or
625
627
``DataFrame`` with sparse values instead. See :ref:`sparse.migration` for help
626
628
with migrating existing code.
627
629
628
-
Removal of prior version deprecations/changes
629
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
630
-
631
630
.. _whatsnew_1000.matplotlib_units:
632
631
633
632
**Matplotlib unit registration**
@@ -760,6 +759,8 @@ or ``matplotlib.Axes.plot``. See :ref:`plotting.formatters` for more.
760
759
- Calling ``np.array`` and ``np.asarray`` on tz-aware :class:`Series` and :class:`DatetimeIndex` will now return an object array of tz-aware :class:`Timestamp` (:issue:`24596`)
- Bug in :meth:`DaataFrame.to_csv` when supplied a series with a ``dtype="string"`` and a ``na_rep``, the ``na_rep`` was being truncated to 2 characters. (:issue:`29975`)
1039
1042
- Bug where :meth:`DataFrame.itertuples` would incorrectly determine whether or not namedtuples could be used for dataframes of 255 columns (:issue:`28282`)
0 commit comments