You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpy/graalpy-apache-arrow-guide/README.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## 1. Getting Started
4
4
5
-
This guide demonstrates how to use the Java Apache Arrow implementation library (JArrow) with GraalPy, achieving zero-copy memory when transferring data between Java and Python.
5
+
This guide demonstrates how to use the Java Apache Arrow implementation library (JArrow) with GraalPy, achieving zero-copy memory when transferring data between Java and Python native extensions, such as Pandas.
6
6
7
7
## 2. What you will need
8
8
* Basic knowledge of JArrow
@@ -38,8 +38,8 @@ or
38
38
39
39
`build.gradle`
40
40
```
41
-
implementation "org.graalvm.python:python-community:24.2.0" // ①
42
-
implementation "org.graalvm.python:python-embedding:24.2.0" // ③
41
+
implementation "org.graalvm.python:python-community:24.2.1" // ①
42
+
implementation "org.graalvm.python:python-embedding:24.2.1" // ③
43
43
```
44
44
45
45
❶ The `python-community` dependency is a meta-package that transitively depends on all resources and libraries to run GraalPy.
@@ -90,8 +90,8 @@ There is also another option `arrow-memory-netty`. You can read more about Apach
0 commit comments