Skip to content

Commit beff0da

Browse files
authored
Add back support for Julia 1.6 (#10)
* Add back support for Julia 1.6 * fix tests
1 parent 72eb213 commit beff0da

4 files changed

Lines changed: 8 additions & 24 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
version:
19-
- '1.7'
19+
- '1.6'
2020
- '1.10'
2121
- '1.12'
2222
- 'pre'
@@ -30,7 +30,7 @@ jobs:
3030
- 'x86'
3131
exclude:
3232
- os: macos-latest
33-
version: '1.7'
33+
version: '1.6'
3434
- os: macos-latest
3535
arch: 'x86'
3636
steps:

.github/workflows/CompatHelper.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name = "MutatePlainDataArray"
22
uuid = "3b0f367b-da20-4531-811a-c13cc92422b5"
33
authors = ["Haoran Ni <haoranni@terpmail.umd.edu> and contributors"]
4-
version = "0.4.0"
4+
version = "1.0.0-dev"
55

66
[compat]
7-
julia = "1.7"
7+
julia = "1.6"
88

99
[workspace]
1010
projects = ["test"]

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ end
4747

4848
@testset "MutatePlainDataArray.jl" begin
4949
@test isbitstype(TAB)
50-
@test !isbitstype(TAI) && !ismutabletype(TAI)
51-
@test ismutabletype(TAM)
50+
@test !isbitstype(TAI)
51+
@test !isbitstype(TAM)
5252
@test isbitstype(TBB)
53-
@test !isbitstype(TBI) && !ismutabletype(TBI)
54-
@test ismutabletype(TBM)
53+
@test !isbitstype(TBI)
54+
@test !isbitstype(TBM)
5555
@test isbitstype(TC)
5656

5757
@testset "aref validation" begin

0 commit comments

Comments
 (0)