Skip to content

Commit

Permalink
Remove NumPy <2 pin (#208)
Browse files Browse the repository at this point in the history
This PR removes the NumPy<2 pin.  `wholegraph` does not appear to be a heavy user of NumPy or CuPy, so it should be fine to simply remove the pin.
For other RAPIDS projects with heavier dependency, CuPy 13.3.0 was required (just released) to have sufficient good CuPy/NumPy interoperability.

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

Approvers:
  - https://github.com/jakirkham

URL: #208
  • Loading branch information
seberg authored Aug 23, 2024
1 parent 9b877a4 commit 44e8a4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ -30,7 +30,7 @@ dependencies:
- nbsphinx
- nccl
- ninja
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- nvcc_linux-64=11.8
- pre-commit
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies:
- nbsphinx
- nccl
- ninja
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- pre-commit
- pydata-sphinx-theme
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ dependencies:
- output_types: [conda, requirements]
packages:
- ninja
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- pytest
- pytest-forked
- pytest-xdist
Expand Down

0 comments on commit 44e8a4c

Please sign in to comment.