Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REGR: Fix interpolation on empty dataframe #35543

Merged
merged 8 commits into from
Aug 17, 2020

Commits on Aug 4, 2020

  1. Fix interpolation on empty dataframe

    Interpolation on an empty dataframe broke in 1.1 due to a change in how 'all columns are objects' is checked (specifically all(empty set) is True, while before dtype count object = None was checked against size = 0).
    This is a complex function and I'm not sure what the proper fix is, suggesting to keep the empty check out of the rest of the logic.
    sanderland committed Aug 4, 2020
    Configuration menu
    Copy the full SHA
    47bc7ba View commit details
    Browse the repository at this point in the history
  2. Update generic.py

    sanderland committed Aug 4, 2020
    Configuration menu
    Copy the full SHA
    2b17cb2 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2020

  1. add test

    Sander Land committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    1676a43 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2020

  1. whatsnew entry, test fix

    Sander Land committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    5844c89 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf917b6 View commit details
    Browse the repository at this point in the history
  3. Update pandas/tests/frame/methods/test_interpolate.py

    Co-authored-by: Simon Hawkins <simonjayhawkins@gmail.com>
    sanderland and simonjayhawkins committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    6b5245b View commit details
    Browse the repository at this point in the history
  4. Update doc/source/whatsnew/v1.1.1.rst

    Co-authored-by: Simon Hawkins <simonjayhawkins@gmail.com>
    sanderland and simonjayhawkins committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    ad4eaa7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a44a4c4 View commit details
    Browse the repository at this point in the history