From 29cd312f83cdba4a809d2caea69306587b6e9791 Mon Sep 17 00:00:00 2001 From: William Zijie Date: Fri, 5 Jan 2024 12:44:53 -0500 Subject: [PATCH 1/2] 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", ], ) From 40ec8d5974696085ec9fa7d9c9e566141cf36868 Mon Sep 17 00:00:00 2001 From: William Zijie Date: Fri, 5 Jan 2024 12:59:02 -0500 Subject: [PATCH 2/2] fixing python version causing build issues --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c55aa8d7a..34c280baf 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ }, package_dir={"": "benchmark"}, packages=setuptools.find_packages(where="benchmark"), - python_requires=">=3.9", + python_requires=">=3.7", license='Apache License, Version 2.0', install_requires=[ "cvxpy",