Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lkapelevich committed Jul 30, 2020
1 parent ebfd0a1 commit d03d465
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion Project.toml
@@ -1,4 +1,16 @@
name = "RowEchelon"
uuid = "af85af4c-bcd5-5d23-b03a-a909639aa875"
repo = "https://github.com/blegat/RowEchelon.jl.git"
version = "0.1.2"
version = "0.1.2"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

[compat]
julia = "1.0"

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

[targets]
test = ["Test"]
1 change: 1 addition & 0 deletions src/RowEchelon.jl
@@ -1,6 +1,7 @@
__precompile__()

module RowEchelon
using LinearAlgebra

export rref, rref!

Expand Down
3 changes: 1 addition & 2 deletions test/runtests.jl
@@ -1,6 +1,5 @@
using RowEchelon
using Compat
using Compat.Test
using Test

As = Vector{Matrix{Int}}()
Rs = Vector{Matrix{Int}}()
Expand Down

0 comments on commit d03d465

Please sign in to comment.