This is an automated email from the ASF dual-hosted git repository.

willayd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 6116e7e7 docs(python): Update development instructions for Python 
bindings (#685)
6116e7e7 is described below

commit 6116e7e76a1ccdc4c9b328c453bb549d7306f1dc
Author: Dewey Dunnington <[email protected]>
AuthorDate: Tue Nov 19 17:47:01 2024 +0000

    docs(python): Update development instructions for Python bindings (#685)
---
 python/README.ipynb | 4 +++-
 python/README.md    | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/python/README.ipynb b/python/README.ipynb
index 5d62065b..014f5bc8 100644
--- a/python/README.ipynb
+++ b/python/README.ipynb
@@ -677,7 +677,9 @@
     "```shell\n",
     "git clone https://github.com/apache/arrow-nanoarrow.git\n";,
     "cd arrow-nanoarrow/python\n",
-    "pip install -e .\n",
+    "# Build dependencies:\n",
+    "# pip install meson meson-python cython\n",
+    "pip install -e . --no-build-isolation\n",
     "```\n",
     "\n",
     "Tests use [pytest](https://docs.pytest.org/):\n",
diff --git a/python/README.md b/python/README.md
index f279a095..bb937654 100644
--- a/python/README.md
+++ b/python/README.md
@@ -422,7 +422,9 @@ This means you can build the project using:
 ```shell
 git clone https://github.com/apache/arrow-nanoarrow.git
 cd arrow-nanoarrow/python
-pip install -e .
+# Build dependencies:
+# pip install meson meson-python cython
+pip install -e . --no-build-isolation
 ```
 
 Tests use [pytest](https://docs.pytest.org/):

Reply via email to