Skip to content

Commit 6fde3dc

Browse files
authored
Merge pull request #1 from JuliaSparse/rs/more_julias
Add compatibility with more Julia versions
2 parents 082cc7d + b2f416f commit 6fde3dc

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
version:
31+
- '1.6'
32+
- '1.7'
33+
- '1.8'
3134
- '1.9'
3235
- '1.10'
3336
- '1.11'

Project.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
name = "NDimensionalSparseArrays"
22
uuid = "6e93e0f3-59a5-426f-9354-1ff93716b9b4"
3+
authors = ["Raphael Sampaio <[email protected]>"]
34
version = "0.1.0"
45

5-
[deps]
6-
76
[compat]
87
Aqua = "0.8"
98
LinearAlgebra = "1.0"
109
Test = "1.0"
11-
julia = "1.9"
10+
julia = "1.0"
1211

1312
[extras]
1413
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NDimensionalSparseArrays.jl
22

3-
[![CI](https://github.com/raphasampaio/NDimensionalSparseArrays.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/raphasampaio/NDimensionalSparseArrays.jl/actions/workflows/CI.yml)
4-
[![codecov](https://codecov.io/github/raphasampaio/ndimensionalsparsearrays.jl/graph/badge.svg?token=I2kXECoZxZ)](https://codecov.io/github/raphasampaio/ndimensionalsparsearrays.jl)
3+
[![CI](https://github.com/JuliaSparse/NDimensionalSparseArrays.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaSparse/NDimensionalSparseArrays.jl/actions/workflows/CI.yml)
4+
[![codecov](https://codecov.io/github/JuliaSparse/NDimensionalSparseArrays.jl/graph/badge.svg?token=I2kXECoZxZ)](https://codecov.io/github/JuliaSparse/NDimensionalSparseArrays.jl)
55
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
66

77
## Overview

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function recursive_include(path::String)
1414
end
1515
end
1616

17-
@testset verbose = true failfast = true begin
17+
@testset verbose = true begin
1818
if length(ARGS) > 0
1919
include(joinpath(@__DIR__, ARGS[1]))
2020
else

0 commit comments

Comments
 (0)