Skip to content

Latest commit

 

History

History
177 lines (129 loc) · 4.64 KB

v0.25.1.rst

File metadata and controls

177 lines (129 loc) · 4.64 KB

What's new in 0.25.1 (July XX, 2019)

Enhancements

Other enhancements

Bug fixes

Categorical

Datetimelike

Timedelta

Timezones

Numeric

Conversion

Strings

Interval

Indexing

  • Bug in partial-string indexing returning a NumPy array rather than a Series when indexing with a scalar like .loc['2015'] (:issue:`27516`)
  • 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`)
  • Fix regression in assigning values to a single column of a DataFrame with a MultiIndex columns (:issue:`27841`).

Missing

MultiIndex

I/O

Plotting

  • Added a pandas_plotting_backends entrypoint group for registering plot backends. See :ref:`extending.plotting-backends` for more (:issue:`26747`).
  • Fixed the re-instatement of Matplotlib datetime converters after calling pandas.plotting.deregister_matplotlib_converters() (:issue:`27481`).
  • Fix compatibility issue with matplotlib when passing a pandas Index to a plot call (:issue:`27775`).

Groupby/resample/rolling

Reshaping

Sparse

Build Changes

ExtensionArray

Other

I/O and LZMA

Some users may unknowingly have an incomplete Python installation, which lacks the lzma module from the standard library. In this case, import pandas failed due to an ImportError (:issue: 27575). Pandas will now warn, rather than raising an ImportError if the lzma module is not present. Any subsequent attempt to use lzma methods will raise a RuntimeError. A possible fix for the lack of the lzma module is to ensure you have the necessary libraries and then re-install Python. For example, on MacOS installing Python with pyenv may lead to an incomplete Python installation due to unmet system dependencies at compilation time (like xz). Compilation will succeed, but Python might fail at run time. The issue can be solved by installing the necessary dependencies and then re-installing Python.

Contributors

.. contributors:: v0.25.0..HEAD