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

numpy 2.0 compatibility #3461

Merged
merged 21 commits into from
Jun 6, 2024
Merged

numpy 2.0 compatibility #3461

merged 21 commits into from
Jun 6, 2024

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    62b6e0e View commit details
    Browse the repository at this point in the history
  2. np2: np.ptp

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    f603c23 View commit details
    Browse the repository at this point in the history
  3. np2: np.float_

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    1557e7a View commit details
    Browse the repository at this point in the history
  4. np2: np.alltrue

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    4038e83 View commit details
    Browse the repository at this point in the history
  5. np2: np.string_

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    9522a6b View commit details
    Browse the repository at this point in the history
  6. np2: np.NaN

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    99ab158 View commit details
    Browse the repository at this point in the history
  7. np2: np.array.newbyteorder

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    0a1a2d6 View commit details
    Browse the repository at this point in the history
  8. np2: np.complex_

    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    3772acb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ffb326b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5c6d1e2 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b922b29 View commit details
    Browse the repository at this point in the history
  12. np2: reftek, avoid precision loss in converting double digit year coming

    from np.uint8 into 4 digit year
    megies committed May 24, 2024
    Configuration menu
    Copy the full SHA
    4801c85 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    1041d2b View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

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

Commits on Jun 4, 2024

  1. np2: alsep: manually upcast header data after reading

    otherwise the later bitshifting etc doesn't work as expected
    megies committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    268a948 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46231a4 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    4c2953d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5adae71 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bf2cb54 View commit details
    Browse the repository at this point in the history
  4. tests: ignore matplotlib complaining about plt.show()

    since we're using a non-interactive backend during tests, plt.show()
    cant open a window
    megies committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    2081a5c View commit details
    Browse the repository at this point in the history
  5. suppress pkg_resources deprecation warning when importing obspy

    when running tests, obspy gets imported before warning filter rules
    specified in pytest.ini take effect, since conftest.py gets loaded,
    which sits in the root obspy source code directory and then the
    __init__.py gets loaded which imports the main core classes and
    functions into our main namespace.
    so the only way to make "pytest -W error" pass without error is to
    ignore that warning directly in our obspy root __init__.py
    megies committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    bc0def3 View commit details
    Browse the repository at this point in the history