Skip to content

Commit 210d087

Browse files
authored
BandedMatrices extension (#199)
* Drop support for Julia <v1.10 * Fixes * BandedMatrices extension * Update InfiniteArraysBandedMatricesExt.jl * package compiles * Tests pass * adjust imports * avoid extension race condition * increase codecov * Fix bugs and increase coverage * tests pass again * Update Project.toml * Update test_infbanded.jl * increase codecov
1 parent 932a16b commit 210d087

File tree

9 files changed

+927
-10
lines changed

9 files changed

+927
-10
lines changed

Project.toml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,41 @@
11
name = "InfiniteArrays"
22
uuid = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
3-
version = "0.14.3"
3+
version = "0.15.0"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
7+
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
78
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
89
Infinities = "e1ba4f0e-776d-440f-acd9-e1d2e9742647"
910
LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
1011
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1112

1213
[weakdeps]
14+
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
1315
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
1416
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1517

18+
[extensions]
19+
InfiniteArraysBandedMatricesExt = "BandedMatrices"
20+
InfiniteArraysDSPExt = "DSP"
21+
InfiniteArraysStatisticsExt = "Statistics"
22+
1623
[compat]
1724
Aqua = "0.8"
1825
ArrayLayouts = "1.8"
19-
BandedMatrices = "1.0"
20-
BlockArrays = "1.0"
26+
BandedMatrices = "1.7.6"
2127
Base64 = "1"
28+
BlockArrays = "1.0"
2229
DSP = "0.7"
2330
FillArrays = "1.0"
2431
Infinities = "0.1.1"
25-
LazyArrays = "2.0.2"
32+
LazyArrays = "2.2.3"
2633
LinearAlgebra = "1.6"
2734
SparseArrays = "1"
2835
Statistics = "1"
2936
Test = "1"
3037
julia = "1.10"
3138

32-
[extensions]
33-
InfiniteArraysDSPExt = "DSP"
34-
InfiniteArraysStatisticsExt = "Statistics"
35-
3639
[extras]
3740
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3841
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"

0 commit comments

Comments
 (0)