From cb902134d77936317aaf7e4fdc82a210bc149bc3 Mon Sep 17 00:00:00 2001 From: Erik Welch Date: Wed, 19 Oct 2022 12:57:10 -0500 Subject: [PATCH] Update to SuiteSparse:GraphBLAS 7.3.0 (#291) `python-graphblas` is still compatible with 7.2.0, so it was kept as a min version. --- .github/workflows/test_and_build.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_build.yml b/.github/workflows/test_and_build.yml index 85085c494..8518e87ba 100644 --- a/.github/workflows/test_and_build.yml +++ b/.github/workflows/test_and_build.yml @@ -66,7 +66,7 @@ jobs: if [[ ${{ matrix.cfg.sourcetype }} == "wheel" ]]; then pip install suitesparse-graphblas else - conda install -c conda-forge "graphblas>=7.2.0" + conda install -c conda-forge "graphblas>=7.3.0" fi if [[ ${{ matrix.cfg.sourcetype }} == "source" ]]; then pip install --no-binary=all suitesparse-graphblas diff --git a/setup.py b/setup.py index 260d0bf79..c997c842c 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ url="https://github.com/python-graphblas/python-graphblas", packages=find_packages(), python_requires=">=3.8", - install_requires=["suitesparse-graphblas >=7.2.0.0, <7.3", "numba", "donfig", "pyyaml"], + install_requires=["suitesparse-graphblas >=7.2.0.0, <7.4", "numba", "donfig", "pyyaml"], extras_require=extras_require, include_package_data=True, license="Apache License 2.0",