Skip to content

Latest commit

 

History

History
83 lines (53 loc) · 2.83 KB

v1.0.2.rst

File metadata and controls

83 lines (53 loc) · 2.83 KB

What's new in 1.0.2 (February ??, 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

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

Categorical

I/O

Experimental dtypes

Contributors

.. contributors:: v1.0.1..v1.0.2|HEAD