Skip to content

Commit

Permalink
Upgrade upper bound pinning to pandas-2.2.2 (#15554)
Browse files Browse the repository at this point in the history
This PR upgrades the pandas upper bound pinning to allow installation of newly released `2.2.2` version.

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Charles Blackmon-Luca (https://github.com/charlesbluca)
  - Matthew Roeschke (https://github.com/mroeschke)
  - Bradley Dice (https://github.com/bdice)
  - Jake Awe (https://github.com/AyodeAwe)

URL: #15554
  • Loading branch information
galipremsagar authored Apr 17, 2024
1 parent e928c4a commit 9f2fdf8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 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 @@ -64,7 +64,7 @@ dependencies:
- nvcomp==3.0.6
- nvtx>=0.2.1
- packaging
- pandas>=2.0,<2.2.2dev0
- pandas>=2.0,<2.2.3dev0
- pandoc
- pip
- pre-commit
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-122_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dependencies:
- nvcomp==3.0.6
- nvtx>=0.2.1
- packaging
- pandas>=2.0,<2.2.2dev0
- pandas>=2.0,<2.2.3dev0
- pandoc
- pip
- pre-commit
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ requirements:
- protobuf >=3.20,<5.0a0
- python
- typing_extensions >=4.0.0
- pandas >=2.0,<2.2.2dev0
- pandas >=2.0,<2.2.3dev0
- cupy >=12.0.0
- numba >=0.57
- {{ pin_compatible('numpy', max_pin='x') }}
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ dependencies:
packages:
- fsspec>=0.6.0
- numpy>=1.23,<2.0a0
- pandas>=2.0,<2.2.2dev0
- pandas>=2.0,<2.2.3dev0
run_cudf:
common:
- output_types: [conda, requirements, pyproject]
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pandas as pd
from packaging import version

PANDAS_CURRENT_SUPPORTED_VERSION = version.parse("2.2.1")
PANDAS_CURRENT_SUPPORTED_VERSION = version.parse("2.2.2")
PANDAS_VERSION = version.parse(pd.__version__)


Expand Down
2 changes: 1 addition & 1 deletion python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
"numpy>=1.23,<2.0a0",
"nvtx>=0.2.1",
"packaging",
"pandas>=2.0,<2.2.2dev0",
"pandas>=2.0,<2.2.3dev0",
"protobuf>=3.20,<5",
"ptxcompiler",
"pyarrow>=14.0.1,<15.0.0a0",
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 @@ -22,7 +22,7 @@ dependencies = [
"cupy-cuda11x>=12.0.0",
"fsspec>=0.6.0",
"numpy>=1.23,<2.0a0",
"pandas>=2.0,<2.2.2dev0",
"pandas>=2.0,<2.2.3dev0",
"rapids-dask-dependency==24.6.*",
] # 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 9f2fdf8

Please sign in to comment.