Skip to content

Commit 6f304fc

Browse files
authored
InfiniteArrays v0.15 support (#8)
1 parent 23fd41a commit 6f304fc

File tree

7 files changed

+8
-483
lines changed

7 files changed

+8
-483
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
version:
26-
- '1.10'
26+
- 'lts'
27+
- '1'
2728
- 'pre'
2829
os:
2930
- ubuntu-latest

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/Manifest.toml
1+
Manifest.toml

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "InfiniteRandomArrays"
22
uuid = "2bc77966-89c7-476d-a40f-269028fac4a9"
33
authors = ["DanielVandH <[email protected]> and contributors"]
4-
version = "0.2.0"
4+
version = "0.2.1"
55

66
[deps]
77
InfiniteArrays = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
@@ -17,12 +17,12 @@ InfiniteRandomArraysBandedMatricesExt = "BandedMatrices"
1717

1818
[compat]
1919
BandedMatrices = "1.7"
20-
InfiniteArrays = "0.12, 0.13, 0.14"
20+
InfiniteArrays = "0.12, 0.13, 0.14, 0.15"
2121
LazyArrays = "2"
2222
LinearAlgebra = "1"
2323
Random = "1"
2424
Test = "1"
25-
julia = "1.6"
25+
julia = "1.10"
2626

2727
[extras]
2828
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/InfiniteRandomArrays.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,4 @@ include("vector.jl")
3939
include("matrix.jl")
4040
include("named.jl")
4141

42-
if !isdefined(Base, :get_extension)
43-
include("../ext/InfiniteRandomArraysBandedMatricesExt.jl")
44-
end
45-
4642
end

0 commit comments

Comments
 (0)