Skip to content

Commit b9df73d

Browse files
committed
Remove ToeplitzMatrices.jl dependency
1 parent 0c8fec9 commit b9df73d

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

Project.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
3030
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
3131
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
3232
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
33-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
34-
ToeplitzMatrices = "c751599d-da0a-543b-9d20-d0a503d91d24"
3533

3634
[compat]
3735
AbstractFFTs = "0.4"
@@ -57,6 +55,12 @@ LowRankApprox = "0.2"
5755
Reexport = "0.2"
5856
SpecialFunctions = "0.7"
5957
StaticArrays = "0.9, 0.10, 0.11"
60-
ToeplitzMatrices = "0.5"
58+
RecipesBase = "0.7"
6159
julia = "1"
6260

61+
62+
[extras]
63+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
64+
65+
[targets]
66+
test = ["Test"]

src/ApproxFun.jl

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
__precompile__()
2-
31
module ApproxFun
4-
using Base, Reexport, BlockArrays, BandedMatrices, BlockBandedMatrices, DomainSets, IntervalSets,
5-
SpecialFunctions, AbstractFFTs, FFTW, SpecialFunctions, DSP, DualNumbers, FastTransforms,
6-
LinearAlgebra, SparseArrays, LowRankApprox, FillArrays, InfiniteArrays, RecipesBase,
7-
FFTW, AbstractFFTs #, Arpack
2+
using Base, Reexport, BlockArrays, BandedMatrices, BlockBandedMatrices, DomainSets, IntervalSets,
3+
SpecialFunctions, AbstractFFTs, FFTW, SpecialFunctions, DSP, DualNumbers, FastTransforms,
4+
LinearAlgebra, SparseArrays, LowRankApprox, FillArrays, InfiniteArrays, RecipesBase #, Arpack
85

96
import Calculus
107

0 commit comments

Comments
 (0)