Skip to content

Commit df0bab2

Browse files
authored
Change from OrdinaryDiffEq to OrdinaryDiffEqTsit5, require Julia 1.10 (#29)
1 parent c31bc73 commit df0bab2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
version:
26-
- '1.6'
26+
- 'lts'
2727
- '1'
2828
os:
2929
- ubuntu-latest

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorMPS"
22
uuid = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
33
authors = ["Matthew Fishman <[email protected]>", "Miles Stoudenmire <[email protected]>"]
4-
version = "0.2.5"
4+
version = "0.2.6"
55

66
[deps]
77
ITensorTDVP = "25707e16-a4db-4a07-99d9-4d67b7af0342"
@@ -12,7 +12,7 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1212
ITensorTDVP = "0.4.1"
1313
ITensors = "0.6.7"
1414
Reexport = "1"
15-
julia = "1.6"
15+
julia = "1.10"
1616

1717
[extras]
1818
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

examples/03_updaters.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Compat: @compat
22
using ITensors: ITensor, array, inds, itensor
33
using ITensorMPS: TimeDependentSum, to_vec
44
using KrylovKit: exponentiate
5-
using OrdinaryDiffEq: ODEProblem, Tsit5, solve
5+
using OrdinaryDiffEqTsit5: ODEProblem, Tsit5, solve
66

77
function ode_updater(operator, init; internal_kwargs, alg=Tsit5(), kwargs...)
88
@compat (; current_time, time_step) = (; current_time=zero(Bool), internal_kwargs...)

examples/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
44
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
55
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
66
Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0"
7-
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
7+
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
88
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
99

1010
[compat]

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
66
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0"
9-
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
9+
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
1010
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1111
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
1212
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)