From c8c9ac77bf55523ab17065311537ae4a574dce4a Mon Sep 17 00:00:00 2001 From: jakirkham Date: Thu, 29 Feb 2024 07:55:57 -0800 Subject: [PATCH] Requre NumPy 1.23+ (#574) As NumPy 1.23 is needed for Python 3.11 support, go ahead and bump the minimum NumPy version used by cuxfilter to match that. xref: https://github.com/rapidsai/cuxfilter/pull/572 xref: https://github.com/rapidsai/build-planning/issues/3 Authors: - https://github.com/jakirkham Approvers: - Jake Awe (https://github.com/AyodeAwe) - Kyle Edwards (https://github.com/KyleFromNVIDIA) - Ajay Thorve (https://github.com/AjayThorve) URL: https://github.com/rapidsai/cuxfilter/pull/574 --- conda/environments/all_cuda-118_arch-x86_64.yaml | 2 +- conda/environments/all_cuda-122_arch-x86_64.yaml | 2 +- conda/recipes/cuxfilter/meta.yaml | 2 +- dependencies.yaml | 2 +- python/pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 44363636..191c12af 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -27,7 +27,7 @@ dependencies: - nodejs>=18 - notebook>=0.5.0 - numba>=0.57 -- numpy>=1.21 +- numpy>=1.23 - numpydoc - packaging - pandoc<=2.0.0 diff --git a/conda/environments/all_cuda-122_arch-x86_64.yaml b/conda/environments/all_cuda-122_arch-x86_64.yaml index 024a828c..7ca02c4e 100644 --- a/conda/environments/all_cuda-122_arch-x86_64.yaml +++ b/conda/environments/all_cuda-122_arch-x86_64.yaml @@ -26,7 +26,7 @@ dependencies: - nodejs>=18 - notebook>=0.5.0 - numba>=0.57 -- numpy>=1.21 +- numpy>=1.23 - numpydoc - packaging - pandoc<=2.0.0 diff --git a/conda/recipes/cuxfilter/meta.yaml b/conda/recipes/cuxfilter/meta.yaml index 5e3f3a93..432cda9c 100644 --- a/conda/recipes/cuxfilter/meta.yaml +++ b/conda/recipes/cuxfilter/meta.yaml @@ -36,7 +36,7 @@ requirements: - libwebp - nodejs >=14 - numba >=0.57 - - numpy >=1.21 + - numpy >=1.23 - packaging - panel >=1.0 - pyppeteer >=0.2.6 diff --git a/dependencies.yaml b/dependencies.yaml index 468c208e..a37c8a8f 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -175,7 +175,7 @@ dependencies: - holoviews>=1.16.0 - jupyter-server-proxy - numba>=0.57 - - numpy>=1.21 + - numpy>=1.23 - packaging - panel>=1.0 - output_types: conda diff --git a/python/pyproject.toml b/python/pyproject.toml index 7195f13c..54ab2052 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "holoviews>=1.16.0", "jupyter-server-proxy", "numba>=0.57", - "numpy>=1.21", + "numpy>=1.23", "packaging", "panel>=1.0", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../dependencies.yaml and run `rapids-dependency-file-generator`.