diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f98d571..0e4d74b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: version: - - '1.6' + - 'lts' - '1' os: - ubuntu-latest diff --git a/Project.toml b/Project.toml index cf593b9..aa6a804 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ITensorTDVP" uuid = "25707e16-a4db-4a07-99d9-4d67b7af0342" authors = ["Matthew Fishman and contributors"] -version = "0.4.9" +version = "0.4.10" [deps] Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" @@ -29,7 +29,7 @@ NDTensors = "0.3.31" Observers = "0.2" PackageExtensionCompat = "1" TimerOutputs = "0.5" -julia = "1.6" +julia = "1.10" [extras] Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0" diff --git a/examples/03_updaters.jl b/examples/03_updaters.jl index 83f6159..264ceba 100644 --- a/examples/03_updaters.jl +++ b/examples/03_updaters.jl @@ -2,7 +2,7 @@ using Compat: @compat using ITensors: ITensor, array, inds, itensor using ITensorTDVP: TimeDependentSum, to_vec using KrylovKit: exponentiate -using OrdinaryDiffEq: ODEProblem, Tsit5, solve +using OrdinaryDiffEqTsit5: ODEProblem, Tsit5, solve function ode_updater(operator, init; internal_kwargs, alg=Tsit5(), kwargs...) @compat (; current_time, time_step) = (; current_time=zero(Bool), internal_kwargs...) diff --git a/examples/Project.toml b/examples/Project.toml index d9d44c7..94b46f9 100644 --- a/examples/Project.toml +++ b/examples/Project.toml @@ -4,7 +4,7 @@ ITensorTDVP = "25707e16-a4db-4a07-99d9-4d67b7af0342" ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5" KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77" Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0" -OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" +OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" [compat] diff --git a/test/Project.toml b/test/Project.toml index 888b687..dcd1d96 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -5,7 +5,7 @@ ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5" KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0" -OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" +OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a" Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"