From bc0c9a59a02b101d604df8b27d9e363b11aa98cf Mon Sep 17 00:00:00 2001 From: jakirkham Date: Wed, 28 Feb 2024 14:57:49 -0800 Subject: [PATCH] Requre NumPy 1.23+ (#1316) As NumPy 1.23 is needed for Python 3.11 support, go ahead and bump the minimum NumPy version used by Dask-CUDA to match that. xref: https://github.com/rapidsai/dask-cuda/pull/1315 xref: https://github.com/rapidsai/build-planning/issues/3 Authors: - https://github.com/jakirkham - Bradley Dice (https://github.com/bdice) Approvers: - Mads R. B. Kristensen (https://github.com/madsbk) - Peter Andreas Entschev (https://github.com/pentschev) - Jake Awe (https://github.com/AyodeAwe) URL: https://github.com/rapidsai/dask-cuda/pull/1316 --- conda/environments/all_cuda-114_arch-x86_64.yaml | 2 +- conda/environments/all_cuda-118_arch-x86_64.yaml | 2 +- conda/environments/all_cuda-122_arch-x86_64.yaml | 2 +- dependencies.yaml | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/environments/all_cuda-114_arch-x86_64.yaml b/conda/environments/all_cuda-114_arch-x86_64.yaml index 46dbef98..c1e6ae55 100644 --- a/conda/environments/all_cuda-114_arch-x86_64.yaml +++ b/conda/environments/all_cuda-114_arch-x86_64.yaml @@ -16,7 +16,7 @@ dependencies: - kvikio==24.4.* - numactl-devel-cos7-x86_64 - numba>=0.57 -- numpy>=1.21 +- numpy>=1.23 - numpydoc>=1.1.0 - pandas>=1.3 - pre-commit diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index bdaee2a3..c880b44a 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -16,7 +16,7 @@ dependencies: - kvikio==24.4.* - numactl-devel-cos7-x86_64 - numba>=0.57 -- numpy>=1.21 +- numpy>=1.23 - numpydoc>=1.1.0 - pandas>=1.3 - pre-commit diff --git a/conda/environments/all_cuda-122_arch-x86_64.yaml b/conda/environments/all_cuda-122_arch-x86_64.yaml index 3f8dd98c..60c177b7 100644 --- a/conda/environments/all_cuda-122_arch-x86_64.yaml +++ b/conda/environments/all_cuda-122_arch-x86_64.yaml @@ -17,7 +17,7 @@ dependencies: - kvikio==24.4.* - numactl-devel-cos7-x86_64 - numba>=0.57 -- numpy>=1.21 +- numpy>=1.23 - numpydoc>=1.1.0 - pandas>=1.3 - pre-commit diff --git a/dependencies.yaml b/dependencies.yaml index 1c66d61b..73eaad63 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -152,7 +152,7 @@ dependencies: - output_types: [conda, requirements, pyproject] packages: - numba>=0.57 - - numpy>=1.21 + - numpy>=1.23 - pandas>=1.3 - pynvml>=11.0.0,<11.5 - rapids-dask-dependency==24.4.* diff --git a/pyproject.toml b/pyproject.toml index a8cabb70..a5d2ef71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ dependencies = [ "click >=8.1", "numba>=0.57", "pyamdsmi >= 0.2.0", - "numpy>=1.21", + "numpy>=1.23", "pandas>=1.3", "pynvml>=11.0.0,<11.5", "rapids-dask-dependency==24.4.*",