Skip to content

Commit e66e93f

Browse files
bjornjorgensenhimadripal
authored and
himadripal
committed
[SPARK-49801][PYTHON][PS][BUILD] Update pandas to 2.2.3
### What changes were proposed in this pull request? Update pandas from 2.2.2 to 2.2.3 ### Why are the changes needed? [Release notes](https://pandas.pydata.org/pandas-docs/version/2.2.3/whatsnew/v2.2.3.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 apache#48269 from bjornjorgensen/pandas2.2.3. Authored-by: Bjørn Jørgensen <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
1 parent e4c5566 commit e66e93f

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
@@ -91,10 +91,10 @@ RUN mkdir -p /usr/local/pypy/pypy3.9 && \
9191
ln -sf /usr/local/pypy/pypy3.9/bin/pypy /usr/local/bin/pypy3.9 && \
9292
ln -sf /usr/local/pypy/pypy3.9/bin/pypy /usr/local/bin/pypy3
9393
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | pypy3
94-
RUN pypy3 -m pip install 'numpy==1.26.4' 'six==1.16.0' 'pandas==2.2.2' scipy coverage matplotlib lxml
94+
RUN pypy3 -m pip install 'numpy==1.26.4' 'six==1.16.0' 'pandas==2.2.3' scipy coverage matplotlib lxml
9595

9696

97-
ARG BASIC_PIP_PKGS="numpy==1.26.4 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"
97+
ARG BASIC_PIP_PKGS="numpy==1.26.4 pyarrow>=15.0.0 six==1.16.0 pandas==2.2.3 scipy plotly>=4.8 mlflow>=2.8.1 coverage matplotlib openpyxl memory-profiler>=0.61.0 scikit-learn>=1.3.2"
9898
# Python deps for Spark Connect
9999
ARG CONNECT_PIP_PKGS="grpcio==1.62.0 grpcio-status==1.62.0 protobuf==4.25.1 googleapis-common-protos==1.56.4 graphviz==0.20.3"
100100

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.2"
41+
PANDAS_LATEST_VERSION = "2.2.3"
4242

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

0 commit comments

Comments
 (0)