Skip to content

Commit 046c312

Browse files
authored
Remove ArrayInterfaceCore dependency (#511)
ArrayInterface 7.x, which is already required, switched to using package extensions and removed the ArrayInterfaceCore package. Get rid of that dependency and use the symbols directly from ArrayInterface instead. (These two symbols are just aliases of types from other packages which is why this still works right now.)
1 parent 537496a commit 046c312

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ version = "0.12.165"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
8-
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"
98
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
109
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
1110
CloseOpenIntervals = "fb6a15b2-703c-40df-9091-08a04967cfa9"
@@ -38,7 +37,6 @@ SpecialFunctionsExt = "SpecialFunctions"
3837

3938
[compat]
4039
ArrayInterface = "7"
41-
ArrayInterfaceCore = "0.1.5"
4240
CPUSummary = "0.1.3 - 0.1.8, 0.1.11, 0.2.1"
4341
ChainRulesCore = "1"
4442
CloseOpenIntervals = "0.1.10"

src/LoopVectorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if isdefined(Base, :Experimental) &&
55
@eval Base.Experimental.@max_methods 1
66
end
77

8-
using ArrayInterfaceCore: UpTri, LoTri
8+
using ArrayInterface: UpTri, LoTri
99
using Static: StaticInt, gt, static, Zero, One, reduce_tup
1010
using VectorizationBase,
1111
SLEEFPirates, UnPack, OffsetArrays, StaticArrayInterface

0 commit comments

Comments
 (0)