diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6db6e20..6a93e55 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: version: - - '1.6' + - 'lts' - '1' os: - ubuntu-latest diff --git a/Project.toml b/Project.toml index 2388031..193f0c0 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ITensorMPS" uuid = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2" authors = ["Matthew Fishman ", "Miles Stoudenmire "] -version = "0.2.5" +version = "0.2.6" [deps] ITensorTDVP = "25707e16-a4db-4a07-99d9-4d67b7af0342" @@ -12,7 +12,7 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69" ITensorTDVP = "0.4.1" ITensors = "0.6.7" Reexport = "1" -julia = "1.6" +julia = "1.10" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/examples/03_updaters.jl b/examples/03_updaters.jl index 44bea1d..a2436da 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 ITensorMPS: 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 558a964..4d3b745 100644 --- a/examples/Project.toml +++ b/examples/Project.toml @@ -4,7 +4,7 @@ ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2" 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 69fd6a2..824fb9a 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -6,7 +6,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" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"