Skip to content

Commit 60ef0aa

Browse files
authored
Support StaticArrays.jl 1.1 (#46)
* support StaticArrays.jl 1.1 * bump version
1 parent 2c0c3c7 commit 60ef0aa

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '~1.5.0-0']
14+
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '~1.6.0-0']
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
1616
steps:
1717
- uses: actions/checkout@v2

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HybridArrays"
22
uuid = "1baab800-613f-4b0a-84e4-9cd3431bfbb9"
33
authors = ["Mateusz Baran <mateuszbaran89@gmail.com>"]
4-
version = "0.4.7"
4+
version = "0.4.8"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -10,7 +10,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1010

1111
[compat]
1212
Requires = "1"
13-
StaticArrays = "=1.0.1,=1.0.2"
13+
StaticArrays = "=1.1.0,=1.0.2,=1.0.1"
1414
julia = "1"
1515

1616
[extras]

test/runtests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ using HybridArrays
22
using StaticArrays
33
using Test
44

5-
@test length(Test.detect_ambiguities(HybridArrays)) == 0
5+
if VERSION < v"1.6"
6+
# Julia 1.6 has a stack overflow on this test :(
7+
@test length(Test.detect_ambiguities(HybridArrays)) == 0
8+
end
69

710
@testset "Inner Constructors" begin
811
@test parent(HybridArray{Tuple{2}, Int, 1, 1, Vector{Int}}((3, 4))) == [3, 4]

0 commit comments

Comments
 (0)