conda-forge / scipy-feedstock

A conda-smithy repository for scipy.
BSD 3-Clause "New" or "Revised" License
6 stars 36 forks source link

Rebuild for PyPy3.8 and PyPy3.9 #202

Closed regro-cf-autotick-bot closed 2 years ago

regro-cf-autotick-bot commented 2 years ago

This PR has been triggered in an effort to update pypy38.

Notes and instructions for merging this PR:

  1. Please merge the PR only after the tests have passed.
  2. Feel free to push to the bot's branch to update this PR if needed.

Please note that if you close this PR we presume that the feedstock has been rebuilt, so if you are going to perform the rebuild yourself don't close this PR until the your rebuild has been merged.

If this PR was opened in error or needs to be updated please add the bot-rerun label to this PR. The bot will close this PR and schedule another one. If you do not have permissions to add this label, you can use the phrase code>@<space/conda-forge-admin, please rerun bot in a PR comment to have the conda-forge-admin add it for you.

This PR was created by the regro-cf-autotick-bot. The regro-cf-autotick-bot is a service to automatically track the dependency graph, migrate packages, and propose package version updates for conda-forge. Feel free to drop us a line if there are any issues! This PR was generated by https://github.com/regro/autotick-bot/actions/runs/2143813652, please use this URL for debugging.

conda-forge-linter commented 2 years ago

Hi! This is the friendly automated conda-forge-linting service.

I just wanted to let you know that I linted all conda-recipes in your PR (recipe) and found it was in an excellent condition.

mattip commented 2 years ago

The linux and macOS runs have only a few failing tests:

FAILED sparse/tests/test_construct.py::TestConstructUtils::test_bmat - Assert...
FAILED stats/tests/test_sampling.py::TestTransformedDensityRejection::test_bad_pdf[<lambda>-TypeError-must be real number, not list]
FAILED stats/tests/test_sampling.py::TestTransformedDensityRejection::test_bad_dpdf[<lambda>-TypeError-must be real number, not list]
FAILED stats/tests/test_sampling.py::TestNumericalInversePolynomial::test_bad_pdf[<lambda>-TypeError-must be real number, not list]

The first seems to be an error in printing a dict:

AssertionError: Regex pattern \
    'Mismatching dimensions along axis 1: {1, 2}' does not match 
    'Mismatching dimensions along axis 1: {2, 1}'.

The last 3 are from TransformedDensityRejection.__cinit__:

AssertionError: Regex pattern \
    'must be real number, not list' does not match 
    "unsupported operand type for float(): 'list'".

The windows one hits https://github.com/scipy/scipy/issues/15121

h-vetinari commented 2 years ago

The windows one hits scipy/scipy#15121

At least the hangs in TestNQuad::test_fixed_limits seem to be gone 💪

h-vetinari commented 2 years ago

On the other hand, given the wrong number of failures in the student distribution (not exactly a rarely used function), I think we cannot progress on this unless we fix that issue (or skip win+pypy).

mdhaber commented 2 years ago

given the wrong number of failures in the student distribution

If this was about studentized_range, that is different (and less common) than Student's t distribution, but I know that at least two other packages (pingouin and statsmodels) now rely on it for Tukey's HSD test (and we do, too).

regro-cf-autotick-bot commented 2 years ago

I see that this PR has conflicts, and I'm the only committer. I'm going to close this PR and will make another one as appropriate. This was generated by https://github.com/regro/autotick-bot/actions/runs/2360290149

mattip commented 2 years ago

This may be a JIT bug in register allocation on windows, see PyPy issue 3753