Closed NicholasWMRitchie closed 2 years ago
I've seen this before in some documentation fails...
That's kind of odd, since it used to work in the past with 1.6.
I'll try to tackle that tomorrow. Thanks for reporting!
In 1.6.5:
julia> (1 .< 2) .|| (2 .> 2)
ERROR: syntax: space before "(" not allowed in "| (" at REPL[31]:1
Stacktrace:
[1] top-level scope
@ none:1
julia> (1 .< 2) .||(2 .> 2)
true
In Julia 1.7.3 everything works:
julia> (1 .< 2) .|| (2 .> 2)
true
julia> (1 .< 2) .||(2 .> 2)
true
As discussed on Slack, broadcasting with ||
is a new 1.7 feature. Therefore, I changed it to a map statement.
Fixed with 6efb2c1
I initiated the release process of Fourier Tools 0.3.3. Should be available soon :smile:
Thanks! Works great!
[b18b359b] FourierTools v0.3.2
doesn't seem to precompile on 1.6.5