This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: RuntimeWarning: invalid value encountered in maximum/minimum
Type: behavior Stage: resolved
Components: Versions: Python 3.5
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: aching, r.david.murray
Priority: normal Keywords:

Created on 2017-04-12 15:21 by aching, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg291560 - (view) Author: Amy (aching) Date: 2017-04-12 15:21
I just updated to numpy 1.12.1 and am getting this Runtime Warning when using numpy.minimum or numpy.maximum:

RuntimeWarning: invalid value encountered in maximum

Prior to updating, I was using numpy 1.10.x and had no issues running numpy.minimum or numpy.maximum
msg291562 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-12 16:34
Numpy is not part of the python standard library.  You should report this issue to the numpy bug tracker, which appears to be here: https://github.com/numpy/numpy/issues.  Or perhaps first ask the numpy community if this is really a bug: the new version might have fixed a bug in minimum/maximum that is now detecting a problem with your code that wasn't detected previously.
History
Date User Action Args
2022-04-11 14:58:45adminsetgithub: 74242
2017-04-12 16:34:03r.david.murraysetstatus: open -> closed

type: compile error -> behavior

nosy: + r.david.murray
messages: + msg291562
resolution: third party
stage: resolved
2017-04-12 15:21:34achingcreate