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

compatibility to new numpy scipy and numexpr versions #281

Merged
merged 5 commits into from
Jul 8, 2024
Merged

Commits on Jul 8, 2024

  1. scipy 1.14.0 has removed deprecated functions

    upate the code accordingly
    skuschel committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    953155d View commit details
    Browse the repository at this point in the history
  2. numpy __array_ufunc__ changed in numpy 2.0.0

    in the kwargs, the argument axis=None may be give when reducing all
    axis. Handle this case.
    skuschel committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    f1d2687 View commit details
    Browse the repository at this point in the history
  3. obey numexpr 2.9 (?) expression sanity check rules

    otherwise numexpr raises an error "expression xxx has forbidden control characters"
    skuschel committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    b5bbb92 View commit details
    Browse the repository at this point in the history
  4. dont use np.asfarray

    it has been removed in numpy 2.0
    skuschel committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    f7171ac View commit details
    Browse the repository at this point in the history
  5. remove testing on python 3.9

    python 3.9 on github has trouble installing numexpr.
    skuschel committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    c61e85a View commit details
    Browse the repository at this point in the history