From 235c9dfa7ad969f9294a9fe698dd3585f1bfd8e8 Mon Sep 17 00:00:00 2001 From: Liam Keegan Date: Thu, 25 Apr 2024 12:57:05 +0200 Subject: [PATCH] bump version to also have macos arm64 wheels on pypi --- CMakeLists.txt | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a055a2..53e54f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,9 @@ -cmake_minimum_required(VERSION 3.15..3.26) +cmake_minimum_required(VERSION 3.15..3.29) # Set a name and a version number for your project: project( pybind11-numpy-example - VERSION 0.0.10 + VERSION 0.0.12 LANGUAGES CXX) # Initialize some default paths diff --git a/pyproject.toml b/pyproject.toml index a90d6c2..16fe4b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "pybind11-numpy-example" -version = "0.0.11" +version = "0.0.12" description = "An example of using numpy with pybind11" readme = "README.md" license = {text = "MIT"}