Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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]
Expand Down
Loading