@@ -35,7 +35,6 @@ docsrcdir = joinpath(docdir, "src")
3535@info (" The following modules are included in IntegerSequences.jl:" )
3636
3737exclude = [
38- " SetPartitionsByShape.jl" ,
3938 " TemplateModule.jl" ,
4039 " BuildSequences.jl" ,
4140 " IntegerSequences.jl" ,
@@ -221,7 +220,7 @@ function build_seq()
221220 println (olm, " __precompile__()" )
222221
223222 println (olm, " module IntegerSequences" )
224- println (olm, " using Nemo, IterTools, HTTP, DocStringExtensions" )
223+ println (olm, " using Nemo, IterTools, DataStructures, HTTP, DocStringExtensions" )
225224 # println(olm, "import AbstractAlgebra.lead")
226225
227226 for l in eachline (sor, keep = true )
@@ -252,10 +251,7 @@ function build_test()
252251 println (o, " srcdir ∉ LOAD_PATH && push!(LOAD_PATH, srcdir)" )
253252
254253 println (o, " module runtests" )
255- println (
256- o,
257- " using Nemo, Test, SeqTests, IntegerSequences, IterTools"
258- )
254+ println (o, " using Nemo, Test, SeqTests, IntegerSequences, IterTools, DataStructures" )
259255
260256 path = joinpath (tstdir, " runtests.jl" )
261257 i = open (path, " r" )
@@ -331,7 +327,7 @@ function build_perf()
331327 println (o, " srcdir ∉ LOAD_PATH && push!(LOAD_PATH, srcdir)" )
332328
333329 println (o, " module perftests" )
334- println (o, " using IntegerSequences, Dates, InteractiveUtils" )
330+ println (o, " using IntegerSequences, DataStructures, Dates, InteractiveUtils" )
335331
336332 println (o, " InteractiveUtils.versioninfo()" )
337333 println (o, " start = Dates.now()" )
0 commit comments