This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 17f8b55a1 ORC-1945: Update Python documentation with PyArrow 20.0.0
and Dask 2025.5.1
17f8b55a1 is described below
commit 17f8b55a18fd922b21d507a64c7db0806bffaace
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Jun 30 22:17:11 2025 -0700
ORC-1945: Update Python documentation with PyArrow 20.0.0 and Dask 2025.5.1
### What changes were proposed in this pull request?
This PR aims to update Python document with PyArrow 20.0.0 and Dask
2025.5.1.
### Why are the changes needed?
To provide an up-to-date Python documentation.
### How was this patch tested?
Manually tested with `Python 3.13.5`.
```
$ python3 --version
Python 3.13.5
$ ipython3
Python 3.13.5 (main, Jun 11 2025, 15:36:57) [Clang 17.0.0
(clang-1700.0.13.3)]
Type 'copyright', 'credits' or 'license' for more information
IPython 9.3.0 -- An enhanced Interactive Python. Type '?' for help.
Tip: You can use `files = !ls *.png`
In [1]: ...
```
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #2311 from dongjoon-hyun/ORC-1945.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 0f0273d26b15efa8995d4cdc6d19928a13a9b51b)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
site/_docs/dask.md | 2 +-
site/_docs/pyarrow.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/site/_docs/dask.md b/site/_docs/dask.md
index 3699d59fd..d443bfef9 100644
--- a/site/_docs/dask.md
+++ b/site/_docs/dask.md
@@ -9,7 +9,7 @@ permalink: /docs/dask.html
[Dask](https://dask.org) also supports Apache ORC.
```
-pip3 install "dask[dataframe]==2024.12.1"
+pip3 install "dask[dataframe]==2025.5.1"
pip3 install pandas
```
diff --git a/site/_docs/pyarrow.md b/site/_docs/pyarrow.md
index aa32c54a9..c082cc7a2 100644
--- a/site/_docs/pyarrow.md
+++ b/site/_docs/pyarrow.md
@@ -9,7 +9,7 @@ permalink: /docs/pyarrow.html
[Apache Arrow](https://arrow.apache.org) project's
[PyArrow](https://pypi.org/project/pyarrow/) is the recommended package.
```
-pip3 install pyarrow==18.1.0
+pip3 install pyarrow==20.0.0
pip3 install pandas
```