From cb3373bf54aef72fd2da23db8b44441a630dcdae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20BRIOL?= Date: Sat, 15 Jun 2024 15:41:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Update=20version=20to=202024.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- binder/environment.yml | 2 +- conda/environment.yml | 2 +- conda/meta.yaml | 2 +- docs/source/changelog.rst | 5 +++++ docs/source/conf.py | 4 ++-- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/binder/environment.yml b/binder/environment.yml index 84588006..7b91c835 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -9,7 +9,7 @@ dependencies: - jupyter - numcodecs - pandas - - pyinterp>=2024.2.0.dev4 + - pyinterp>=2024.3.0 - pytest - sphinx-gallery - sphinx-inline-tabs diff --git a/conda/environment.yml b/conda/environment.yml index 9ce88783..ee43ef47 100644 --- a/conda/environment.yml +++ b/conda/environment.yml @@ -5,7 +5,7 @@ dependencies: - numcodecs - pandas - pip - - pyinterp>=2024.2.0.dev4 + - pyinterp>=2024.3.0 - pypandoc - pytest - python=3.9 diff --git a/conda/meta.yaml b/conda/meta.yaml index 74295e76..f505b4ca 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyinterp" %} -{% set version = "2024.2.0.dev4" %} +{% set version = "2024.6.0" %} package: name: {{ name|lower }} diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 6a1f001c..b54cdfe8 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,11 @@ Changelog ######### +2024.6.0 +-------- +* Fix compatibility with Numpy 2.0.0 +* Minor bug fixes. + 2024.3.0 -------- * Enhance the performance of the spline/bicubic interpolation: diff --git a/docs/source/conf.py b/docs/source/conf.py index d4f3f1da..5fddfe44 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -17,9 +17,9 @@ author = 'CNES/CLS' # The short X.Y version -version = '2024.2.0.dev7' +version = '2024.6.0' # The full version, including alpha/beta/rc tags -release = '2024.2.0.dev7' +release = '2024.6.0' # -- General configuration ---------------------------------------------------