Skip to content

Commit 7c639a1

Browse files
bjornjorgensendongjoon-hyun
authored andcommitted
[SPARK-47817][PYTHON][PS][BUILD] Update pandas to 2.2.2
### What changes were proposed in this pull request? Update `pandas` from 2.2.1 to 2.2.2 ### Why are the changes needed? [Release notes](https://pandas.pydata.org/docs/whatsnew/v2.2.2.html) ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass GA ### Was this patch authored or co-authored using generative AI tooling? No. Closes #46009 from bjornjorgensen/pandas2.2.2. Authored-by: Bjørn Jørgensen <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 3103627 commit 7c639a1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: dev/infra/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ RUN mkdir -p /usr/local/pypy/pypy3.8 && \
8686
ln -sf /usr/local/pypy/pypy3.8/bin/pypy /usr/local/bin/pypy3.8 && \
8787
ln -sf /usr/local/pypy/pypy3.8/bin/pypy /usr/local/bin/pypy3
8888
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | pypy3
89-
RUN pypy3 -m pip install numpy 'six==1.16.0' 'pandas<=2.2.1' scipy coverage matplotlib lxml
89+
RUN pypy3 -m pip install numpy 'six==1.16.0' 'pandas<=2.2.2' scipy coverage matplotlib lxml
9090

9191

92-
ARG BASIC_PIP_PKGS="numpy pyarrow>=15.0.0 six==1.16.0 pandas<=2.2.1 scipy plotly>=4.8 mlflow>=2.8.1 coverage matplotlib openpyxl memory-profiler>=0.61.0 scikit-learn>=1.3.2"
92+
ARG BASIC_PIP_PKGS="numpy pyarrow>=15.0.0 six==1.16.0 pandas<=2.2.2 scipy plotly>=4.8 mlflow>=2.8.1 coverage matplotlib openpyxl memory-profiler>=0.61.0 scikit-learn>=1.3.2"
9393
# Python deps for Spark Connect
9494
ARG CONNECT_PIP_PKGS="grpcio==1.62.0 grpcio-status==1.62.0 protobuf==4.25.1 googleapis-common-protos==1.56.4"
9595

Diff for: python/pyspark/pandas/supported_api_gen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
MAX_MISSING_PARAMS_SIZE = 5
3939
COMMON_PARAMETER_SET = {"kwargs", "args", "cls"}
4040
MODULE_GROUP_MATCH = [(pd, ps), (pdw, psw), (pdg, psg)]
41-
PANDAS_LATEST_VERSION = "2.2.1"
41+
PANDAS_LATEST_VERSION = "2.2.2"
4242

4343
RST_HEADER = """
4444
=====================

0 commit comments

Comments
 (0)