Skip to content

Commit 8a19709

Browse files
committed
Don't refer to IterativeEigensolvers or SuiteSparse in Compat.jl
1 parent 5c1875a commit 8a19709

File tree

4 files changed

+0
-28
lines changed

4 files changed

+0
-28
lines changed

Project.toml

-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
88
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
99
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
1010
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
11-
IterativeEigensolvers = "de555fa4-b82f-55e7-8b71-53f60bbc027d"
1211
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
1312
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
1413
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -22,7 +21,6 @@ Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
2221
SharedArrays = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
2322
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
2423
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
25-
SuiteSparse = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
2624
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2725
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2826
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

README.md

-6
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,6 @@ Currently, the `@compat` macro supports the following syntaxes:
9898
* `using Compat.Printf` is provided on versions older than 0.7, where this library is not
9999
yet a part of the standard library. ([#25056])
100100

101-
* `using Compat.IterativeEigensolvers` is provided on versions older than 0.7, where this
102-
library is not yet a part of the standard library. ([#24714])
103-
104-
* `using Compat.SuiteSparse` is provided on versions older than 0.7, where this library is
105-
not yet part of the standard library ([#24648]).
106-
107101
* `using Compat.SparseArrays` is provided on versions older than 0.7, where this library is
108102
not yet part of the standard library ([#25249]).
109103

src/Compat.jl

-4
Original file line numberDiff line numberDiff line change
@@ -853,8 +853,6 @@ elseif VERSION < v"0.7.0-DEV.3019"
853853
using IterativeEigenSolvers: eigs, svds
854854
export eigs, svds
855855
end
856-
else
857-
import IterativeEigensolvers
858856
end
859857

860858
@static if VERSION < v"0.7.0-DEV.3449"
@@ -888,8 +886,6 @@ if VERSION < v"0.7.0-DEV.2609"
888886
end
889887
using Compat.SparseArrays: increment, increment!, decrement, decrement!
890888
end
891-
else
892-
import SuiteSparse
893889
end
894890

895891
@static if VERSION < v"0.7.0-DEV.3500"

test/runtests.jl

-16
Original file line numberDiff line numberDiff line change
@@ -888,22 +888,6 @@ module Test25056
888888
end
889889

890890
# 0.7
891-
module Test24714
892-
using Compat
893-
using Compat.Test
894-
using Compat.IterativeEigensolvers
895-
@test isdefined(@__MODULE__, :IterativeEigensolvers)
896-
@test isdefined(@__MODULE__, :eigs)
897-
@test isdefined(@__MODULE__, :svds)
898-
end
899-
900-
# 0.7
901-
module Test24648
902-
using Compat
903-
using Compat.Test
904-
using Compat.SuiteSparse
905-
@test isdefined(@__MODULE__, :SuiteSparse)
906-
end
907891

908892
let a = [0,1,2,3,0,1,2,3]
909893
# curried isequal

0 commit comments

Comments
 (0)