From bca220730b7e58e45267ab8102ebb230c2f22fad Mon Sep 17 00:00:00 2001 From: Matthew Fishman Date: Fri, 26 Jun 2026 15:52:55 -0400 Subject: [PATCH] Narrow NamedGraphs compat back to 0.11 ## Summary Restores `NamedGraphs` compat to `0.11` in both the package and test projects. NamedGraphs 0.12 requires DataGraphs 0.5, which ITensorNetworksNext does not yet support, so the 0.12 bucket allowed in https://github.com/ITensor/ITensorNetworksNext.jl/pull/127 was unreachable and failed CheckCompatBounds. Moving to NamedGraphs 0.12 will follow the DataGraphs 0.5 migration. Co-Authored-By: Claude Opus 4.8 (1M context) --- Project.toml | 4 ++-- test/Project.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index bcdccd9..00f52e1 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ITensorNetworksNext" uuid = "302f2e75-49f0-4526-aef7-d8ba550cb06c" -version = "0.7.2" +version = "0.7.3" authors = ["ITensor developers and contributors"] [workspace] @@ -34,7 +34,7 @@ ITensorBase = "0.8" LinearAlgebra = "1.10" MacroTools = "0.5.16" MatrixAlgebraKit = "0.6" -NamedGraphs = "0.11, 0.12" +NamedGraphs = "0.11" Random = "1.10" SimpleTraits = "0.9.5" SplitApplyCombine = "1.2.3" diff --git a/test/Project.toml b/test/Project.toml index 4de2a97..e4dbe5d 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -34,7 +34,7 @@ ITensorBase = "0.8" ITensorNetworksNext = "0.7" ITensorPkgSkeleton = "0.3.42" MatrixAlgebraKit = "0.6" -NamedGraphs = "0.11.5, 0.12" +NamedGraphs = "0.11.5" QuadGK = "2.11.2" Random = "1.10" SafeTestsets = "0.1"