Skip to content

Commit e669bd4

Browse files
authored
Julia v1.11 Support (#109)
* Julia v1.11 Support * tests pass
1 parent a74169b commit e669bd4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
version:
1313
- '1.6'
1414
- '1'
15+
- '^1.11.0-0'
1516
os:
1617
- ubuntu-latest
1718
- macOS-latest

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "QuasiArrays"
22
uuid = "c4ea9172-b204-11e9-377d-29865faadc5c"
33
authors = ["Sheehan Olver <solver@mac.com>"]
4-
version = "0.11.6"
4+
version = "0.11.7"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/indices.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,8 @@ union(x::Inclusion...) = Inclusion{mapreduce(eltype,promote_type,x)}(_union(map(
210210

211211
checkindex(::Type{Bool}, inds::Inclusion{T}, i::T) where T = i inds
212212
checkindex(::Type{Bool}, inds::Inclusion, i) = i inds
213+
checkindex(::Type{Bool}, inds::Inclusion{T}, i::T) where T<:AbstractArray = i inds
214+
checkindex(::Type{Bool}, inds::Inclusion, i::AbstractArray) = i inds
213215
checkindex(::Type{Bool}, inds::Inclusion, ::Colon) = true
214216
checkindex(::Type{Bool}, inds::Inclusion, ::Inclusion) = true
215217

0 commit comments

Comments
 (0)