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

Corrected version detection for new pandas #2679

Merged
merged 10 commits into from
Nov 4, 2015

Commits on Oct 28, 2015

  1. Improved version detection.

    Because Pandas changed from a version module to __version__ only
    PierreBdR committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    961e17b View commit details
    Browse the repository at this point in the history
  2. Added missed pandas versions checks

    Also simplified, assuming __version__ is always there.
    PierreBdR committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    1518f07 View commit details
    Browse the repository at this point in the history
  3. Corrected pandas version testing in graphics

    It relied directly on pandas string rather than using the tools.testing
    function.
    PierreBdR committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    7ac0b63 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2015

  1. Corrected use of the view method on recarray

    Numpy now follows its own documentation, but that's new!
    PierreBdR committed Oct 29, 2015
    Configuration menu
    Copy the full SHA
    a03497b View commit details
    Browse the repository at this point in the history
  2. Corrected use of numpy that changed

    Main differences: 'view' doesn't always return a ndarray and an array
    with a single line or column is always both F and C contiguous
    PierreBdR committed Oct 29, 2015
    Configuration menu
    Copy the full SHA
    3980842 View commit details
    Browse the repository at this point in the history
  3. Corrected sort / sort_values for pandas

    At least as far as tests are concerned
    PierreBdR committed Oct 29, 2015
    Configuration menu
    Copy the full SHA
    3faba6e View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2015

  1. Corrected pandas / numpy version checking

    Now using LooseVersion for pandas, which seems to be working.
    PierreBdR committed Oct 30, 2015
    Configuration menu
    Copy the full SHA
    0023c10 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2015

  1. Configuration menu
    Copy the full SHA
    9cbe4b1 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2015

  1. Corrected pandas compat sort_version

    Now handles: < 0.14 (no inplace for Series)
                 >= 0.14 < 0.17 (Series have inplace)
                 >= 0.17 (using sort_values instead of sort)
    PierreBdR committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    92d2425 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f2450d View commit details
    Browse the repository at this point in the history