You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int(Any[1, 2, 3]) worked previously, but the deprecation from #10452 doesn't. It tries to call round(Int, Any[1, 2, 3]), but the vectorized form of round is constrained to Real arrays. Either we should get rid of that type restriction on round (maybe just for the methods that take a type first), or we should add a deprecation that works for this case.
The text was updated successfully, but these errors were encountered:
int(Any[1, 2, 3])
worked previously, but the deprecation from #10452 doesn't. It tries to callround(Int, Any[1, 2, 3])
, but the vectorized form ofround
is constrained to Real arrays. Either we should get rid of that type restriction onround
(maybe just for the methods that take a type first), or we should add a deprecation that works for this case.The text was updated successfully, but these errors were encountered: