Skip to content

Commit 08a7a5f

Browse files
Merge pull request #124 from JuliaMath/sb/rm-generic
remove GenericSVD and GenericSchur as dependencies
2 parents 8a4f826 + 829fef2 commit 08a7a5f

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ repo = "https://github.com/JuliaMath/DoubleFloats.jl.git"
77
version = "1.1.18"
88

99
[deps]
10-
GenericSVD = "01680d73-4ee2-5a08-a1aa-533608c188bb"
11-
GenericSchur = "c145ed77-6b09-5dd9-b285-bf645a82121e"
1210
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1311
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
1412
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
@@ -18,17 +16,17 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1816
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1917

2018
[compat]
21-
GenericSVD = "0.3, 0.4, 0.5"
22-
GenericSchur = "0.3, 0.4, 0.5"
2319
Polynomials = "1, 2"
2420
Quadmath = "0.4, 0.5, 0.6"
2521
Requires = "1"
2622
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, 1.0, 1.1"
2723
julia = "1"
2824

2925
[extras]
26+
GenericLinearAlgebra = "14197337-ba66-59df-a3e3-ca00e7dcff7a"
27+
GenericSchur = "c145ed77-6b09-5dd9-b285-bf645a82121e"
3028
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
3129
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3230

3331
[targets]
34-
test = ["Test", "SpecialFunctions"]
32+
test = ["Test", "SpecialFunctions", "GenericLinearAlgebra", "GenericSchur"]

docs/src/linearalgebra.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
## Using
44

55
```julia
6-
using DoubleFloats, GenericSchur, GenericSVD, LinearAlgebra
6+
using DoubleFloats, LinearAlgebra
77
```
88

99
## Vectors and Matrices
1010

1111
```julia
12-
using DoubleFloats, GenericSchur, GenericSVD, LinearAlgebra
12+
using DoubleFloats, LinearAlgebra
1313

1414
n = 25
1515
vector = rand(Double64, n)

src/DoubleFloats.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ import Random: rand, randn
4343

4444
using Polynomials
4545

46-
using GenericSVD, GenericSchur
4746
using LinearAlgebra
4847
import LinearAlgebra: norm, mul!
4948

test/linearalgebra.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
using GenericLinearAlgebra, GenericSchur
2+
13
@testset "linear algebra" begin
24
@test issquare(reshape(rand(Double32,3*3), 3, 3))
35

0 commit comments

Comments
 (0)