Skip to content

Commit

Permalink
Pin to numpy <1.26.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Sep 21, 2023
1 parent 05ee260 commit 8be5b54
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dependencies:
- ninja
- notebook
- numba>=0.57
- numpy>=1.21
- numpy>=1.21,<1.26
- numpydoc
- nvcc_linux-64=11.8
- nvcomp==2.6.1
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-120_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies:
- ninja
- notebook
- numba>=0.57
- numpy>=1.21
- numpy>=1.21,<1.26
- numpydoc
- nvcomp==2.6.1
- nvtx>=0.2.1
Expand Down
3 changes: 2 additions & 1 deletion conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ requirements:
- pandas >=1.3,<1.6.0dev0
- cupy >=12.0.0
- numba >=0.57
- numpy >=1.21
# TODO: Pin to numpy <1.26 until upgrading to pandas 2
- numpy >=1.21,<1.26
- {{ pin_compatible('pyarrow', max_pin='x.x.x') }}
- libcudf ={{ version }}
- {{ pin_compatible('rmm', max_pin='x.x') }}
Expand Down
6 changes: 4 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ dependencies:
# Hard pin the patch version used during the build. This must be kept
# in sync with the version pinned in get_arrow.cmake.
- pyarrow==12.0.1.*
- numpy>=1.21
# TODO: Pin to numpy <1.26 until upgrading to pandas 2
- numpy>=1.21,<1.26
build_python:
common:
- output_types: [conda, requirements, pyproject]
Expand Down Expand Up @@ -425,7 +426,8 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- fsspec>=0.6.0
- numpy>=1.21
# TODO: Pin to numpy <1.26 until upgrading to pandas 2
- numpy>=1.21,<1.26
- pandas>=1.3,<1.6.0dev0
run_cudf:
common:
Expand Down
4 changes: 2 additions & 2 deletions python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires = [
"cmake>=3.26.4",
"cython>=3.0.0",
"ninja",
"numpy>=1.21",
"numpy>=1.21,<1.26",
"protoc-wheel",
"pyarrow==12.0.1.*",
"rmm==23.10.*",
Expand All @@ -32,7 +32,7 @@ dependencies = [
"cupy-cuda11x>=12.0.0",
"fsspec>=0.6.0",
"numba>=0.57",
"numpy>=1.21",
"numpy>=1.21,<1.26",
"nvtx>=0.2.1",
"packaging",
"pandas>=1.3,<1.6.0dev0",
Expand Down
2 changes: 1 addition & 1 deletion python/cudf_kafka/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

requires = [
"cython>=3.0.0",
"numpy>=1.21",
"numpy>=1.21,<1.26",
"pyarrow==12.0.1.*",
"setuptools",
"wheel",
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"dask>=2023.7.1",
"distributed>=2023.7.1",
"fsspec>=0.6.0",
"numpy>=1.21",
"numpy>=1.21,<1.26",
"pandas>=1.3,<1.6.0dev0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
Expand Down

0 comments on commit 8be5b54

Please sign in to comment.