Skip to content

Commit

Permalink
Remove NumPy <2 pin, remove panel ceiling (#622)
Browse files Browse the repository at this point in the history
This PR removes the NumPy<2 pin which is expected to work for
RAPIDS projects once CuPy 13.3.0 is released (CuPy 13.2.0 had
some issues preventing the use with NumPy 2).

EDIT: Sorry, converted back to draft again, NumPy 2 is not yet picked up.

Authors:
  - Sebastian Berg (https://github.com/seberg)
  - James Lamb (https://github.com/jameslamb)

Approvers:
  - Mike Sarahan (https://github.com/msarahan)
  - Ajay Thorve (https://github.com/AjayThorve)
  - James Lamb (https://github.com/jameslamb)

URL: #622
  • Loading branch information
seberg authored Sep 24, 2024
1 parent cd699b8 commit 516b1f0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ dependencies:
- nodejs>=18
- notebook>=0.5.0
- numba>=0.57
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandoc<=2.0.0
- panel>=1.0
- panel>=1.0,<=1.3.4
- pre-commit
- pydata-sphinx-theme
- pytest
Expand Down
3 changes: 1 addition & 2 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ dependencies:
- nodejs>=18
- notebook>=0.5.0
- numba>=0.57
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandoc<=2.0.0
- panel>=1.0
- panel>=1.0,<=1.3.4
- pre-commit
- pydata-sphinx-theme
- pytest
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuxfilter/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ requirements:
- libwebp-base
- nodejs >=14
- numba >=0.57
- numpy >=1.23,<2.0a0
- numpy >=1.23,<3.0a0
- packaging
- panel >=1.0
- python
Expand Down
5 changes: 1 addition & 4 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ dependencies:
- holoviews>=1.16.0
- jupyter-server-proxy
- numba>=0.57
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- packaging
- panel>=1.0
- output_types: conda
Expand Down Expand Up @@ -260,9 +260,6 @@ dependencies:
- pytest
- pytest-cov
- pytest-xdist
- output_types: conda
packages:
- panel>=1.0,<=1.3.4
test_external:
common:
- output_types: [conda]
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"holoviews>=1.16.0",
"jupyter-server-proxy",
"numba>=0.57",
"numpy>=1.23,<2.0a0",
"numpy>=1.23,<3.0a0",
"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`.
Expand Down

0 comments on commit 516b1f0

Please sign in to comment.