Skip to content

Commit 84540a7

Browse files
lithomas1im-vinicius
authored and
im-vinicius
committed
DOC: Adjust build command for building with meson (pandas-dev#53392)
Change default command to show verbose output. Otherwise, it might be confusing for users when the import hangs and their CPU goes to 100% during the rebuild step.
1 parent d405f3e commit 84540a7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/source/development/contributing_environment.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,10 @@ Because the meson build system is newer, you may find bugs/minor issues as it ma
223223
To compile pandas with meson, run::
224224

225225
# Build and install pandas
226-
python -m pip install -ve . --no-build-isolation
226+
# By default, this will print verbose output
227+
# showing the "rebuild" taking place on import (see section below for explanation)
228+
# If you do not want to see this, omit everything after --no-build-isolation
229+
python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true
227230

228231
**Build options**
229232

0 commit comments

Comments
 (0)