This is an automated email from the ASF dual-hosted git repository.
alenka pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 2cb1f2bceb GH-49546: [Docs][Python] Fix documented editable build
commands where verbose flags order was wrong (#49547)
2cb1f2bceb is described below
commit 2cb1f2bceb67a2a8a3863f65b382edee3b1533c7
Author: Raúl Cumplido <[email protected]>
AuthorDate: Wed Mar 18 12:01:15 2026 +0100
GH-49546: [Docs][Python] Fix documented editable build commands where
verbose flags order was wrong (#49547)
### Rationale for this change
The current documented command was wrong as `--editable -vv .` fails it
should be `--editable . -vv` or `-vv --editable .`
### What changes are included in this PR?
Update documentation for all `--editable` commands.
### Are these changes tested?
Tested the new command is correct.
### Are there any user-facing changes?
No
* GitHub Issue: #49546
Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: AlenkaF <[email protected]>
---
docs/source/developers/guide/step_by_step/building.rst | 2 +-
docs/source/developers/python/building.rst | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/source/developers/guide/step_by_step/building.rst
b/docs/source/developers/guide/step_by_step/building.rst
index a8eb1c46c2..05a5b2f083 100644
--- a/docs/source/developers/guide/step_by_step/building.rst
+++ b/docs/source/developers/guide/step_by_step/building.rst
@@ -155,7 +155,7 @@ Building other Arrow libraries
.. code:: console
- $ pip install --no-build-isolation --editable -vv .
+ $ pip install --no-build-isolation --editable . -vv
**Recompiling C++**
diff --git a/docs/source/developers/python/building.rst
b/docs/source/developers/python/building.rst
index fc2d1a2629..39d72b7c7d 100644
--- a/docs/source/developers/python/building.rst
+++ b/docs/source/developers/python/building.rst
@@ -391,7 +391,7 @@ To build PyArrow run:
.. code-block::
$ pushd arrow/python
- $ pip install --no-build-isolation --editable -vv .
+ $ pip install --no-build-isolation --editable . -vv
$ popd
.. tab-item:: Windows
@@ -400,7 +400,7 @@ To build PyArrow run:
.. code-block::
$ pushd arrow\python
- $ pip install --no-build-isolation --editable -vv .
+ $ pip install --no-build-isolation --editable . -vv
$ popd
.. note::
@@ -429,7 +429,7 @@ To build PyArrow run:
.. code-block::
$ set PYARROW_BUNDLE_ARROW_CPP=ON
- $ pip install --no-build-isolation --editable -vv .
+ $ pip install --no-build-isolation --editable . -vv
Note that bundled Arrow C++ libraries will not be automatically
updated when rebuilding Arrow C++.