From afeaef7ff0d003caf9e28f1b3a035d95e5eedb42 Mon Sep 17 00:00:00 2001 From: Matthew Fishman Date: Mon, 29 Jun 2026 16:30:21 -0400 Subject: [PATCH] Widen TensorAlgebra and GradedArrays compat through 0.13 Widens the `TensorAlgebra` compat (package and tests) and the test `GradedArrays` compat to allow their 0.12 and 0.13 releases, keeping the existing lower bounds since the code works unchanged across the whole range. GradedArrays 0.13 carries the breaking sector-type parameter reordering from https://github.com/ITensor/GradedArrays.jl/pull/195, which does not affect this package's high-level usage. --- Project.toml | 4 ++-- test/Project.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index b6771c1..2caaf86 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ITensorNetworksNext" uuid = "302f2e75-49f0-4526-aef7-d8ba550cb06c" -version = "0.7.4" +version = "0.7.5" authors = ["ITensor developers and contributors"] [workspace] @@ -38,5 +38,5 @@ NamedGraphs = "0.11" Random = "1.10" SimpleTraits = "0.9.5" SplitApplyCombine = "1.2.3" -TensorAlgebra = "0.11" +TensorAlgebra = "0.11, 0.12, 0.13" julia = "1.10" diff --git a/test/Project.toml b/test/Project.toml index 3900ce4..9bde6fa 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -28,7 +28,7 @@ AlgorithmsInterface = "0.1" Aqua = "0.8.14" DataGraphs = "0.4" Dictionaries = "0.4.5" -GradedArrays = "0.10, 0.11" +GradedArrays = "0.10, 0.11, 0.12, 0.13" Graphs = "1.13.1" ITensorBase = "0.8" ITensorNetworksNext = "0.7" @@ -40,6 +40,6 @@ Random = "1.10" SafeTestsets = "0.1" StableRNGs = "1" Suppressor = "0.2.8" -TensorAlgebra = "0.11" +TensorAlgebra = "0.11, 0.12, 0.13" TensorOperations = "5.3.1" Test = "1.10"