Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 35b8cca

Browse files
authored
Switch from OrdinaryDiffEq to OrdinaryDiffEqTsit5, require Julia 1.10 (#91)
1 parent ad39d09 commit 35b8cca

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
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- '1.6'
21+
- 'lts'
2222
- '1'
2323
os:
2424
- ubuntu-latest

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorTDVP"
22
uuid = "25707e16-a4db-4a07-99d9-4d67b7af0342"
33
authors = ["Matthew Fishman <mfishman@flatironinstitute.org> and contributors"]
4-
version = "0.4.9"
4+
version = "0.4.10"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
@@ -29,7 +29,7 @@ NDTensors = "0.3.31"
2929
Observers = "0.2"
3030
PackageExtensionCompat = "1"
3131
TimerOutputs = "0.5"
32-
julia = "1.6"
32+
julia = "1.10"
3333

3434
[extras]
3535
Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0"

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 ITensorTDVP: 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 @@ ITensorTDVP = "25707e16-a4db-4a07-99d9-4d67b7af0342"
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
@@ -5,7 +5,7 @@ ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
55
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
77
Observers = "338f10d5-c7f1-4033-a7d1-f9dec39bcaa0"
8-
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
8+
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
99
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1010
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1111
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"

0 commit comments

Comments
 (0)