Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"
11 changes: 6 additions & 5 deletions .github/workflows/IntegrationTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

11 changes: 6 additions & 5 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SparseArraysBase"
uuid = "0d5efcca-f356-4864-8770-e1ed8d78f208"
version = "0.9.10"
version = "0.9.11"
authors = ["ITensor developers <support@itensor.org> and contributors"]

[workspace]
Expand Down
14 changes: 8 additions & 6 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand All @@ -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"
Expand Down
Loading