You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently our docs only use python setup.py build_ext -i for building inplace.
But this is not doing an actual installation, so we should update our docs to do an editable install with pip install -e . (or at least a first time).
With the latest pyproject.toml changes, skipping this installation will now also result in a failure when trying to build pyarrow directly with setup.py (e.g. #41992 (comment)).
Moreover, direct invocation of setup.py is deprecated (although there is no clear alternative in the case of setup.py build_ext, except from re-installing with pip install)
The text was updated successfully, but these errors were encountered:
Currently our docs only use
python setup.py build_ext -i
for building inplace.But this is not doing an actual installation, so we should update our docs to do an editable install with
pip install -e .
(or at least a first time).With the latest pyproject.toml changes, skipping this installation will now also result in a failure when trying to build pyarrow directly with
setup.py
(e.g. #41992 (comment)).Moreover, direct invocation of
setup.py
is deprecated (although there is no clear alternative in the case ofsetup.py build_ext
, except from re-installing withpip install
)The text was updated successfully, but these errors were encountered: