Skip to content

Commit

Permalink
rm support for < 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oameye committed Feb 20, 2024
1 parent 700f7e7 commit 7c0c8f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"

[weakdeps]
Expand Down
16 changes: 8 additions & 8 deletions src/HarmonicBalance.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using Random
import HomotopyContinuation
const HC = HomotopyContinuation
import Distances
using Requires
# using Requires
# using SnoopPrecompile

import Base: show, display
Expand Down Expand Up @@ -73,13 +73,13 @@ export first_order_transform!, is_rearranged_standard, rearrange_standard!, get_
export get_krylov_equations

# support for julia < 1.9
function __init__()
@static if !isdefined(Base, :get_extension)
@require OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" begin
include("../ext/TimeEvolution/TimeEvolution.jl")
end
end
end
# function __init__()
# @static if !isdefined(Base, :get_extension)
# @require OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" begin
# include("../ext/TimeEvolution/TimeEvolution.jl")
# end
# end
# end
# if !isdefined(Base, :get_extension)
# include("../ext/TimeEvolution/TimeEvolution.jl")
# using .TimeEvolution
Expand Down

0 comments on commit 7c0c8f0

Please sign in to comment.