-
-
Notifications
You must be signed in to change notification settings - Fork 116
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
No support for cat #612
Comments
galenlynch
added a commit
to galenlynch/Compat.jl
that referenced
this issue
Aug 12, 2018
cat(dims, Xs...) was deprecated to cat(Xs..., dims=dim) in [#27163], but as described in JuliaLang#612 support for the new signature is missing in Compat. Fixes JuliaLang#612 [#27163]: https://github.com/JuliaLang/julia/issue/27163
galenlynch
added a commit
to galenlynch/Compat.jl
that referenced
this issue
Aug 16, 2018
cat(dims, Xs...) was deprecated to cat(Xs...; dims=dim) in [#27163], but as described in JuliaLang#612 support for the new signature is missing in Compat. Fixes JuliaLang#612 [#27163]: https://github.com/JuliaLang/julia/issue/27163
martinholters
pushed a commit
that referenced
this issue
Aug 22, 2018
* Add compatibility for cat with dims kw argument cat(dims, Xs...) was deprecated to cat(Xs...; dims=dim) in [#27163], but as described in #612 support for the new signature is missing in Compat. Fixes #612 [#27163]: https://github.com/JuliaLang/julia/issue/27163
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In 0.7, cat requires the dims keyword (#27100), but Compat.cat does not seem to work.
In Julia 0.6:
The text was updated successfully, but these errors were encountered: