From 0b0792372eb67905c60ea34e640af3e5af52bb55 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Thu, 19 Feb 2026 20:44:05 -0500 Subject: [PATCH] Apply format patch --- .github/dependabot.yml | 3 +-- .github/workflows/IntegrationTest.yml | 11 ++++++----- .github/workflows/Tests.yml | 11 ++++++----- Project.toml | 2 +- test/Project.toml | 14 ++++++++------ 5 files changed, 22 insertions(+), 19 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707c..5ace460 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,6 @@ -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "github-actions" - directory: "/" # Location of package manifests + directory: "/" schedule: interval: "weekly" diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml index 093c420..d4d268c 100644 --- a/.github/workflows/IntegrationTest.yml +++ b/.github/workflows/IntegrationTest.yml @@ -30,12 +30,13 @@ jobs: localregistry: "https://github.com/ITensor/ITensorRegistry.git" pkg: "${{ matrix.pkg }}" integration-gate: - name: IntegrationTest - needs: integration-test - if: ${{ always() }} - runs-on: ubuntu-latest + name: "IntegrationTest" + needs: "integration-test" + if: "${{ always() }}" + runs-on: "ubuntu-latest" steps: - - name: Fail if any downstream integration test failed + - name: "Fail if any downstream integration test failed" run: | echo "integration-test.result = ${{ needs['integration-test'].result }}" test "${{ needs['integration-test'].result }}" = "success" + diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 74af763..db43292 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -41,12 +41,13 @@ jobs: secrets: CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" tests-gate: - name: Tests - needs: tests - if: ${{ always() }} - runs-on: ubuntu-latest + name: "Tests" + needs: "tests" + if: "${{ always() }}" + runs-on: "ubuntu-latest" steps: - - name: Fail if any matrix leg failed + - name: "Fail if any matrix leg failed" run: | echo "tests.result = ${{ needs.tests.result }}" test "${{ needs.tests.result }}" = "success" + diff --git a/Project.toml b/Project.toml index 4204aa7..7cf49e9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "SparseArraysBase" uuid = "0d5efcca-f356-4864-8770-e1ed8d78f208" -version = "0.9.10" +version = "0.9.11" authors = ["ITensor developers and contributors"] [workspace] diff --git a/test/Project.toml b/test/Project.toml index 5584127..4895025 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -1,3 +1,4 @@ + [deps] Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" @@ -17,21 +18,22 @@ Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb" TensorAlgebra = "68bd88dc-f39d-4e12-b2ca-f046b68fcc6a" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" -[sources] -SparseArraysBase = {path = ".."} + +[sources.SparseArraysBase] +path = ".." [compat] -Adapt = "4.2.0" +Adapt = "4.2" Aqua = "0.8.11" ArrayLayouts = "1.11.1" Dictionaries = "0.4.4" -FillArrays = "1.13.0" +FillArrays = "1.13" FunctionImplementations = "0.4" -JLArrays = "0.2.0, 0.3" +JLArrays = "0.2, 0.3" LinearAlgebra = "<0.0.1, 1" NamedDimsArrays = "0.13, 0.14" Random = "<0.0.1, 1" -SafeTestsets = "0.1.0" +SafeTestsets = "0.1" SparseArrays = "1.10" SparseArraysBase = "0.9" StableRNGs = "1.0.2"