From d83f75a92499a8a274e20d96348852b0d16e5ab9 Mon Sep 17 00:00:00 2001 From: Maik Riechert Date: Sun, 14 Jul 2024 09:04:34 +0100 Subject: [PATCH] remove numpy version constraints as it'll be backwards compatible --- CHANGELOG.md | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39c9f8a..e6ec0ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.12.0] - 2024-06-23 +## [0.12.0] - 2024-07-14 ### Changed -- Require numpy 2.0 or higher. +- Support numpy 2. ### Removed - Drop Python 3.8 support. diff --git a/setup.py b/setup.py index 64940c4..0ce7345 100644 --- a/setup.py +++ b/setup.py @@ -155,7 +155,7 @@ def build_extensions(self): ext_modules=ext_modules, packages = find_packages(), setup_requires=['pybind11>=2.6.0'], - install_requires=['numpy>=2.0'], + install_requires=['numpy'], cmdclass={'build_ext': BuildExt}, zip_safe=False, )