Skip to content

Commit b912400

Browse files
mtfishmanclaude
andauthored
Widen root MatrixAlgebraKit to "0.6"; exclude only 0.6.5 in test (#260)
Follow-up to #258. Under the bucket-rule compat check ([ITensorActions#79](ITensor/ITensorActions#79)), within-bucket gaps no longer fail, so root can go back to `"0.6"` instead of the narrow `"0.6.0 - 0.6.4"`. `test/Project.toml` still needs to exclude MatrixAlgebraKit 0.6.5 because of its JLArrays compat break. Switching from `"0.6.0 - 0.6.4"` to `"0.6.0 - 0.6.4, 0.6.6"` lets the resolver auto-pick up 0.6.6 as soon as it's registered, with no further compat bump required here. The trailing `"0.6.6"` uses bare caret semver (`[0.6.6, 0.7.0)`) so it stays in the 0.6 bucket — `">=0.6.6"` would also admit 0.7+. Closes #259. ### Changes - root: `MatrixAlgebraKit = "0.6.0 - 0.6.4"` → `"0.6"` - test: `MatrixAlgebraKit = "0.6.0 - 0.6.4"` → `"0.6.0 - 0.6.4, 0.6.6"` - Patch version bump. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b474423 commit b912400

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BlockSparseArrays"
22
uuid = "2c9a651f-6452-4ace-a6ac-809f4280fbb4"
3-
version = "0.10.38"
3+
version = "0.10.39"
44
authors = ["ITensor developers <support@itensor.org> and contributors"]
55

66
[workspace]
@@ -41,7 +41,7 @@ GPUArraysCore = "0.1, 0.2"
4141
LinearAlgebra = "1.10"
4242
MacroTools = "0.5.13"
4343
MapBroadcast = "0.1.5"
44-
MatrixAlgebraKit = "0.6.0 - 0.6.4"
44+
MatrixAlgebraKit = "0.6"
4545
SparseArraysBase = "0.9"
4646
SplitApplyCombine = "1.2.3"
4747
TensorAlgebra = "0.6.2, 0.7, 0.8, 0.9"

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ GPUArraysCore = "0.2"
3636
ITensorPkgSkeleton = "0.3.42"
3737
JLArrays = "0.2, 0.3"
3838
LinearAlgebra = "1"
39-
MatrixAlgebraKit = "0.6.0 - 0.6.4"
39+
MatrixAlgebraKit = "0.6.0 - 0.6.4, 0.6.6"
4040
Random = "1"
4141
SafeTestsets = "0.1"
4242
SparseArraysBase = "0.9"

0 commit comments

Comments
 (0)