Skip to content

Commit

Permalink
docs(python): Update development instructions for Python bindings (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot authored Nov 19, 2024
1 parent 2930787 commit 6116e7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion python/README.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 3 additions & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/):
Expand Down

0 comments on commit 6116e7e

Please sign in to comment.