File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -151,15 +151,15 @@ and then run::
151
151
git bisect start
152
152
git bisect good v1.4.0
153
153
git bisect bad v1.5.0
154
- git bisect run bash -c "python setup.py build_ext -j 4 ; python t.py"
154
+ git bisect run bash -c "python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true ; python t.py"
155
155
156
156
This finds the first commit that changed the behavior. The C extensions have to be
157
157
rebuilt at every step, so the search can take a while.
158
158
159
159
Exit bisect and rebuild the current version::
160
160
161
161
git bisect reset
162
- python setup.py build_ext -j 4
162
+ python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true
163
163
164
164
Report your findings under the corresponding issue and ping the commit author to get
165
165
their input.
Original file line number Diff line number Diff line change 28
28
raise ImportError (
29
29
f"C extension: { _module } not built. If you want to import "
30
30
"pandas from the source directory, you may need to run "
31
- "'python setup.py build_ext' to build the C extensions first."
31
+ "'python -m pip install -ve . --no-build-isolation --config-settings "
32
+ "editable-verbose=true' to build the C extensions first."
32
33
) from _err
33
34
34
35
from pandas ._config import (
You can’t perform that action at this time.
0 commit comments