Skip to content

Latest commit

 

History

History
125 lines (81 loc) · 6.05 KB

v1.0.2.rst

File metadata and controls

125 lines (81 loc) · 6.05 KB

What's new in 1.0.2 (March 12, 2020)

These are the changes in pandas 1.0.2. See :ref:`release` for a full changelog including other versions of pandas.

{{ header }}

Fixed regressions

Groupby

I/O

Reindexing/alignment

Other

Indexing with nullable boolean arrays

Previously indexing with a nullable Boolean array containing NA would raise a ValueError, however this is now permitted with NA being treated as False. (:issue:`31503`)

.. ipython:: python

    s = pd.Series([1, 2, 3, 4])
    mask = pd.array([True, True, False, None], dtype="boolean")
    s
    mask

pandas 1.0.0-1.0.1

>>> s[mask]
Traceback (most recent call last):
...
ValueError: cannot mask with array containing NA / NaN values

pandas 1.0.2

.. ipython:: python

    s[mask]

Bug fixes

Datetimelike

Categorical

I/O

Experimental dtypes

Strings

Rolling

  • Fixed rolling operations with variable window (defined by time duration) on decreasing time index (:issue:`32385`).

Contributors

.. contributors:: v1.0.1..v1.0.2