From 9f2fdf84f59d8093d4ec7b91932c6b17a8193fd7 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 17 Apr 2024 15:25:11 -0500 Subject: [PATCH] Upgrade upper bound pinning to `pandas-2.2.2` (#15554) 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: https://github.com/rapidsai/cudf/pull/15554 --- conda/environments/all_cuda-118_arch-x86_64.yaml | 2 +- conda/environments/all_cuda-122_arch-x86_64.yaml | 2 +- conda/recipes/cudf/meta.yaml | 2 +- dependencies.yaml | 2 +- python/cudf/cudf/core/_compat.py | 2 +- python/cudf/pyproject.toml | 2 +- python/dask_cudf/pyproject.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index e629f8b633e..ef971d10f19 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -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 diff --git a/conda/environments/all_cuda-122_arch-x86_64.yaml b/conda/environments/all_cuda-122_arch-x86_64.yaml index f135a88cac2..688e41ec1ba 100644 --- a/conda/environments/all_cuda-122_arch-x86_64.yaml +++ b/conda/environments/all_cuda-122_arch-x86_64.yaml @@ -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 diff --git a/conda/recipes/cudf/meta.yaml b/conda/recipes/cudf/meta.yaml index cd9237bd7cb..5512ef11057 100644 --- a/conda/recipes/cudf/meta.yaml +++ b/conda/recipes/cudf/meta.yaml @@ -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') }} diff --git a/dependencies.yaml b/dependencies.yaml index 8cd4c798c38..147a89076c4 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -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] diff --git a/python/cudf/cudf/core/_compat.py b/python/cudf/cudf/core/_compat.py index fba3a98e56d..e2bdecbe67a 100644 --- a/python/cudf/cudf/core/_compat.py +++ b/python/cudf/cudf/core/_compat.py @@ -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__) diff --git a/python/cudf/pyproject.toml b/python/cudf/pyproject.toml index 434383bc208..adab199dcf4 100644 --- a/python/cudf/pyproject.toml +++ b/python/cudf/pyproject.toml @@ -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", diff --git a/python/dask_cudf/pyproject.toml b/python/dask_cudf/pyproject.toml index d0743516c4d..fcf83e82989 100644 --- a/python/dask_cudf/pyproject.toml +++ b/python/dask_cudf/pyproject.toml @@ -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 = [