Skip to content

Commit 36f2dfc

Browse files
committed
Update graphblas version
1 parent 061f3c6 commit 36f2dfc

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ pytest==8.0.1
33
pytest-benchmark
44
pytest-cov
55
cfpq_data==1.0.2
6-
suitesparse-graphblas==7.4.4.0
7-
python-graphblas==2023.7.0
6+
suitesparse-graphblas==8.2.1.0
7+
python-graphblas==2024.2.0
88
pandas==2.0.3
99
numpy==1.23.5
1010
psutil==5.9.8

test/AllPaths/conftest.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import pytest
22

3-
from src.problems.AllPaths.algo.tensor.tensor import TensorSimpleAlgo, TensorDynamicAlgo
43

5-
6-
@pytest.fixture(params=[TensorSimpleAlgo, TensorDynamicAlgo])
4+
# If you use SuiteSparse:GraphBLAS 7, you can add `params=[TensorSimpleAlgo, TensorDynamicAlgo],
5+
# but for these legacy implementations can't be used with SuiteSparse:GraphBLAS 8,
6+
# which we now use by default.
7+
@pytest.fixture(params=[])
78
def algo(request):
89
return request.param

test/ShortestPath/conftest.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import pytest
22

3-
from src.problems.SinglePath.algo.matrix_shortest_path.matrix_shortest_path_index import MatrixShortestAlgo
43

5-
6-
@pytest.fixture(params=[MatrixShortestAlgo])
4+
# If you use SuiteSparse:GraphBLAS 7, you can add `params=[MatrixShortestAlgo],
5+
# but for this legacy implementation can't be used with SuiteSparse:GraphBLAS 8,
6+
# which we now use by default.
7+
@pytest.fixture(params=[])
78
def algo(request):
89
return request.param

0 commit comments

Comments
 (0)