Skip to content

Commit

Permalink
Allow using pandas 2 (#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 #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: #1308
  • Loading branch information
vyasr authored Jan 26, 2024
1 parent 55a3f12 commit 897f0b6
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 @@ -146,7 +146,7 @@ dependencies:
- click >=8.1
- numba>=0.57
- 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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies = [
"click >=8.1",
"numba>=0.57",
"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 897f0b6

Please sign in to comment.