Skip to content

Commit

Permalink
Allow using pandas 2 (rapidsai#1308)
Browse files Browse the repository at this point in the history
dask-cuda uses pandas for some tests, but the main reason for the pinning is that it is inherited from RAPIDS libraries (mainly cudf) that do not yet support pandas 2.0 and are the primary use case for dask-cuda. However, there is no reason dask-cuda cannot be used in other contexts, so relaxing this constraint makes sense.

Resolves rapidsai#1306

Authors:
  - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Lawrence Mitchell (https://github.com/wence-)
  - Ray Douglass (https://github.com/raydouglass)

URL: rapidsai#1308
  • Loading branch information
vyasr authored and younseojava committed Apr 16, 2024
1 parent de88713 commit 91a7a97
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-114_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- numba>=0.57
- numpy>=1.21
- numpydoc>=1.1.0
- pandas>=1.3,<1.6.0.dev0
- pandas>=1.3
- pre-commit
- pynvml>=11.0.0,<11.5
- pytest
Expand Down
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 @@ -18,7 +18,7 @@ dependencies:
- numba>=0.57
- numpy>=1.21
- numpydoc>=1.1.0
- pandas>=1.3,<1.6.0.dev0
- pandas>=1.3
- pre-commit
- pynvml>=11.0.0,<11.5
- pytest
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 @@ -19,7 +19,7 @@ dependencies:
- numba>=0.57
- numpy>=1.21
- numpydoc>=1.1.0
- pandas>=1.3,<1.6.0.dev0
- pandas>=1.3
- pre-commit
- pynvml>=11.0.0,<11.5
- pytest
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ dependencies:
packages:
- numba>=0.57
- numpy>=1.21
- pandas>=1.3,<1.6.0dev0
- pandas>=1.3
- pynvml>=11.0.0,<11.5
- rapids-dask-dependency==24.4.*
- zict>=2.0.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies = [
"numba>=0.57",
"pyamdsmi >= 0.2.0",
"numpy>=1.21",
"pandas>=1.3,<1.6.0.dev0",
"pandas>=1.3",
"pynvml>=11.0.0,<11.5",
"rapids-dask-dependency==24.4.*",
"zict>=2.0.0",
Expand Down

0 comments on commit 91a7a97

Please sign in to comment.