Skip to content

Commit 2cb1f2b

Browse files
authored
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 <raulcumplido@gmail.com> Signed-off-by: AlenkaF <frim.alenka@gmail.com>
1 parent ccd0051 commit 2cb1f2b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/source/developers/guide/step_by_step/building.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Building other Arrow libraries
155155

156156
.. code:: console
157157
158-
$ pip install --no-build-isolation --editable -vv .
158+
$ pip install --no-build-isolation --editable . -vv
159159
160160
**Recompiling C++**
161161

docs/source/developers/python/building.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ To build PyArrow run:
391391
.. code-block::
392392
393393
$ pushd arrow/python
394-
$ pip install --no-build-isolation --editable -vv .
394+
$ pip install --no-build-isolation --editable . -vv
395395
$ popd
396396
397397
.. tab-item:: Windows
@@ -400,7 +400,7 @@ To build PyArrow run:
400400
.. code-block::
401401
402402
$ pushd arrow\python
403-
$ pip install --no-build-isolation --editable -vv .
403+
$ pip install --no-build-isolation --editable . -vv
404404
$ popd
405405
406406
.. note::
@@ -429,7 +429,7 @@ To build PyArrow run:
429429
.. code-block::
430430
431431
$ set PYARROW_BUNDLE_ARROW_CPP=ON
432-
$ pip install --no-build-isolation --editable -vv .
432+
$ pip install --no-build-isolation --editable . -vv
433433
434434
Note that bundled Arrow C++ libraries will not be automatically
435435
updated when rebuilding Arrow C++.

0 commit comments

Comments
 (0)