From b0e364a7f99fcc08e2227888ca1c4b4b24d248dc Mon Sep 17 00:00:00 2001 From: ahoopes Date: Fri, 20 Sep 2024 18:49:40 -0400 Subject: [PATCH] set numpy < 2.0 version requirement --- changelog.md | 3 +++ setup.py | 2 +- surfa/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 4828a48..c69b1db 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,9 @@ All notable changes to the surfa package are documented in this file. +## [0.6.0] - 2024-09-20 +- Added temporary fix to prevent numpy 2 build errors + ## [0.6.0] - 2023-06-30 - Added surface distance metrics - Added signed distance transform utilities for image data diff --git a/setup.py b/setup.py index 842ceeb..db5d771 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ requirements = [ - 'numpy', + 'numpy<2.0', 'scipy', 'nibabel>=2.1', 'Pillow', diff --git a/surfa/__init__.py b/surfa/__init__.py index 568b348..e31170e 100644 --- a/surfa/__init__.py +++ b/surfa/__init__.py @@ -2,7 +2,7 @@ # SURFA # -__version__ = '0.6.0' +__version__ = '0.6.1' from . import system