Skip to content

Commit

Permalink
upgrade OffsetArrays to v1.3.0 (#37643)
Browse files Browse the repository at this point in the history
* upgrade to OffsetArrays v1.3.0

* everywhere include OffsetArrays

* more tests for #37204

OffsetArrays issues 133 and 100 are fixed by #37204.
  • Loading branch information
johnnychen94 authored Oct 6, 2020
1 parent 093bb4f commit 7ae86df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/splitrange.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ using Distributed: splitrange
@test splitrange(-1, 1, 4) == Array{UnitRange{Int64},1}([-1:-1,0:0,1:1])

const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test")
isdefined(Main, :OffsetArrays) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "OffsetArrays.jl"))
isdefined(Main, :OffsetArrays) || @eval Main @everywhere include(joinpath($(BASE_TEST_PATH), "testhelpers", "OffsetArrays.jl"))
using .Main.OffsetArrays

oa = OffsetArray([123, -345], (-2,))
Expand Down

0 comments on commit 7ae86df

Please sign in to comment.