-
-
Notifications
You must be signed in to change notification settings - Fork 117
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
2-arg vectorized trunc doesn't work in Julia 0.5 #297
Comments
See also related #291. Most of the broadcasting infrastructure would be quite difficult to backport, unfortunately. |
I know, I'm the same who reported that one ;-)
I suspected that, but keeping compatibility in packages for both 0.5 and 0.6 is hard. I have to choose between dropping support for 0.5 now and updating the package later. I think I'll do the former as soon as 0.6 is out. |
We could define a limited number of |
`trunc.(Int, array)` does not work in Julia 0.5, nor a compatibility utility currently exists to backport this syntax, unless JuliaLang/Compat.jl#297 is fixed.
In Julia 0.5
Vectorized version of
trunc
is now preferred in master, after (probably) JuliaLang/julia#19791. Any chance to make it work in Julia 0.5 usingCompat.jl
?The text was updated successfully, but these errors were encountered: