From 9089f2dc095b5bc538397edb300881c77f4a7391 Mon Sep 17 00:00:00 2001 From: Baptiste Nicolet Date: Fri, 21 Oct 2022 11:33:53 +0200 Subject: [PATCH] Bumped nanobind minimum version required --- CMakeLists.txt | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f020862..8d43072 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.18...3.22) -project(cholespy LANGUAGES CXX C VERSION "0.1.5") +project(cholespy LANGUAGES CXX C VERSION "0.1.6") # Nanobind setup from https://github.com/wjakob/nanobind_example/blob/master/CMakeLists.txt if (NOT SKBUILD) diff --git a/pyproject.toml b/pyproject.toml index f90b21d..0f9db89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = [ "wheel", "scikit-build==0.14.0", "cmake>=3.18", - "nanobind>=0.0.5", + "nanobind>=0.0.7", "ninja; platform_system!='Windows'" ] diff --git a/setup.py b/setup.py index 008ad2a..c04c332 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name="cholespy", - version="0.1.5", + version="0.1.6", description="A self-contained sparse Cholesky solver, compatible with CPU and GPU tensor frameworks.", author="Baptiste Nicolet", license="BSD",