From 29cd312f83cdba4a809d2caea69306587b6e9791 Mon Sep 17 00:00:00 2001 From: William Zijie Date: Fri, 5 Jan 2024 12:44:53 -0500 Subject: [PATCH] adding setup for python-graphblas benchmarks --- asv.conf.json | 3 ++- setup.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/asv.conf.json b/asv.conf.json index 0ccaf0597..2cc70ce61 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -40,7 +40,8 @@ "scs": [], "numpy": [], "scipy": [], - "pybind11": [] + "pybind11": [], + "python-graphblas": [] }, // The directory (relative to the current directory) that benchmarks are diff --git a/setup.py b/setup.py index 14c2ce08c..c55aa8d7a 100644 --- a/setup.py +++ b/setup.py @@ -15,11 +15,12 @@ }, package_dir={"": "benchmark"}, packages=setuptools.find_packages(where="benchmark"), - python_requires=">=3.7", + python_requires=">=3.9", license='Apache License, Version 2.0', install_requires=[ "cvxpy", "asv<0.6", "virtualenv", + "python-graphblas", ], )