From 2290fe1160a5194261e46aa1476379ef592a72db Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Mon, 1 Apr 2024 19:38:02 +0200 Subject: [PATCH] REL: set version to 1.6.0, build against numpy>=2.0.0rc1 (#731) --- meson.build | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 7be64c00..ad165b6c 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'PyWavelets', 'c', 'cython', - version: '1.6.0rc1', + version: '1.6.0', license: 'MIT', meson_version: '>= 1.1.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index e419f090..bc1a1bbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,12 +19,12 @@ requires = [ # Note that building against numpy 1.x works fine too - users and # redistributors can do this by installing the numpy version they like and # disabling build isolation. - "numpy>=2.0.0b1,<2.3", + "numpy>=2.0.0rc1,<2.3", ] [project] name = "PyWavelets" -version = "1.6.0rc1" +version = "1.6.0" # TODO: add `license-files` once PEP 639 is accepted (see meson-python#88) # at that point, no longer include them in `py3.install_sources()` license = {file = "LICENSE"}