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

Build packages compatible with multiple NumPy version #32

Merged
merged 2 commits into from
Jul 15, 2017

Commits on Jul 8, 2017

  1. Build packages compatible with multiple numpys

    NumPy maintains backwards compatibility and therefore extensions built with a
    older version of NumPy will work with newer versions. To take advantage of this
    and build a single pandas package that will work with multiple version of
    NumPy, the oldest version of NumPy provided for a particular Python
    version (Python 3.5 - 1.9 Python 3.6 - 1.11) or in the case of Python 2.7
    the minimum version required by Pandas (1.7) is pinned as a build requirement.
    The run requirement is then specified as any NumPy version greater than or
    equal to this pinned version.
    jjhelmus committed Jul 8, 2017
    Configuration menu
    Copy the full SHA
    2fb1c6b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f0532b9 View commit details
    Browse the repository at this point in the history