From bd459f6fd79802f2a997483c9020edb6f0764f90 Mon Sep 17 00:00:00 2001 From: Daniel Rapp Date: Mon, 23 Mar 2026 17:15:56 +0000 Subject: [PATCH] fix: bump version to 0.7.0 and add scipy to cibuildwheel test-requires Co-Authored-By: Claude Opus 4.6 --- meson.build | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index cf3a4c7..f8e7205 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', 'cpp', 'cython', # Version: meson-python doesn't yet support setuptools_scm (see issue #159) # For now, version must be manually updated here for each release - version: '0.6.1-dev', + version: '0.7.0', license: 'AGPL-3.0-or-later', meson_version: '>= 1.2.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index e376841..f295510 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "mesonpy" [project] name = "redblackgraph" # Version is set in meson.build (meson-python doesn't support dynamic versioning) -version = "0.6.1-dev" +version = "0.7.0" description = "Red Black Graph - AVOS algebra for graph computation" readme = "README.md" requires-python = ">=3.10" @@ -95,7 +95,7 @@ skip = "pp* *-musllinux_* *-win32 *-manylinux_i686" test-command = "python -c \"import redblackgraph; print('✓ Import successful, version:', redblackgraph.__version__)\"" # Only need runtime dependencies for import test -test-requires = ["numpy"] +test-requires = ["numpy", "scipy"] # Build configuration [tool.cibuildwheel.linux]