Skip to content

Commit f9cb6b0

Browse files
authored
Apply format patch (#124)
1 parent f9f342a commit f9cb6b0

5 files changed

Lines changed: 22 additions & 19 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
21
version: 2
32
updates:
43
- package-ecosystem: "github-actions"
5-
directory: "/" # Location of package manifests
4+
directory: "/"
65
schedule:
76
interval: "weekly"

.github/workflows/IntegrationTest.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ jobs:
3030
localregistry: "https://github.com/ITensor/ITensorRegistry.git"
3131
pkg: "${{ matrix.pkg }}"
3232
integration-gate:
33-
name: IntegrationTest
34-
needs: integration-test
35-
if: ${{ always() }}
36-
runs-on: ubuntu-latest
33+
name: "IntegrationTest"
34+
needs: "integration-test"
35+
if: "${{ always() }}"
36+
runs-on: "ubuntu-latest"
3737
steps:
38-
- name: Fail if any downstream integration test failed
38+
- name: "Fail if any downstream integration test failed"
3939
run: |
4040
echo "integration-test.result = ${{ needs['integration-test'].result }}"
4141
test "${{ needs['integration-test'].result }}" = "success"
42+

.github/workflows/Tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,13 @@ jobs:
4141
secrets:
4242
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
4343
tests-gate:
44-
name: Tests
45-
needs: tests
46-
if: ${{ always() }}
47-
runs-on: ubuntu-latest
44+
name: "Tests"
45+
needs: "tests"
46+
if: "${{ always() }}"
47+
runs-on: "ubuntu-latest"
4848
steps:
49-
- name: Fail if any matrix leg failed
49+
- name: "Fail if any matrix leg failed"
5050
run: |
5151
echo "tests.result = ${{ needs.tests.result }}"
5252
test "${{ needs.tests.result }}" = "success"
53+

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SparseArraysBase"
22
uuid = "0d5efcca-f356-4864-8770-e1ed8d78f208"
3-
version = "0.9.10"
3+
version = "0.9.11"
44
authors = ["ITensor developers <support@itensor.org> and contributors"]
55

66
[workspace]

test/Project.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
[deps]
23
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
34
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
@@ -17,21 +18,22 @@ Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
1718
TensorAlgebra = "68bd88dc-f39d-4e12-b2ca-f046b68fcc6a"
1819
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1920

20-
[sources]
21-
SparseArraysBase = {path = ".."}
21+
22+
[sources.SparseArraysBase]
23+
path = ".."
2224

2325
[compat]
24-
Adapt = "4.2.0"
26+
Adapt = "4.2"
2527
Aqua = "0.8.11"
2628
ArrayLayouts = "1.11.1"
2729
Dictionaries = "0.4.4"
28-
FillArrays = "1.13.0"
30+
FillArrays = "1.13"
2931
FunctionImplementations = "0.4"
30-
JLArrays = "0.2.0, 0.3"
32+
JLArrays = "0.2, 0.3"
3133
LinearAlgebra = "<0.0.1, 1"
3234
NamedDimsArrays = "0.13, 0.14"
3335
Random = "<0.0.1, 1"
34-
SafeTestsets = "0.1.0"
36+
SafeTestsets = "0.1"
3537
SparseArrays = "1.10"
3638
SparseArraysBase = "0.9"
3739
StableRNGs = "1.0.2"

0 commit comments

Comments
 (0)