Skip to content

Commit c9f417f

Browse files
authored
GH-45288: [Python][Packaging][Docs] Update documentation for PyArrow nightly wheels (#45289)
### Rationale for this change We now upload nightly PyArrow wheels to https://anaconda.org/scientific-python-nightly-wheels/pyarrow so we should document it. In addition, the current documentation incorrectly points to the arrow-nightlies channel which AFAICT is no longer used and also points to Gemfury which we'd like to stop using. ### What changes are included in this PR? Updates the relevant section in the docs with instructions on how to use the scientific-python-nightly-wheels repository. ### Are these changes tested? I've tested installing a wheel from https://anaconda.org/scientific-python-nightly-wheels/pyarrow. ### Are there any user-facing changes? Updated docs. * GitHub Issue: #45288 Authored-by: Bryce Mecum <petridish@gmail.com> Signed-off-by: Raúl Cumplido <raulcumplido@gmail.com>
1 parent 8d367d2 commit c9f417f

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

docs/source/developers/python.rst

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -724,26 +724,18 @@ Installing Nightly Packages
724724
.. warning::
725725
These packages are not official releases. Use them at your own risk.
726726

727-
PyArrow has nightly wheels and Conda packages for testing purposes.
727+
PyArrow has nightly wheels for testing purposes hosted at
728+
`scientific-python-nightly-wheels
729+
<https://anaconda.org/scientific-python-nightly-wheels/pyarrow>`_.
728730

729731
These may be suitable for downstream libraries in their continuous integration
730732
setup to maintain compatibility with the upcoming PyArrow features,
731-
deprecations and/or feature removals.
733+
deprecations, and/or feature removals.
732734

733-
Install the development version of PyArrow from `arrow-nightlies
734-
<https://anaconda.org/arrow-nightlies/pyarrow>`_ conda channel:
735+
To install the most recent nightly version of PyArrow, run:
735736

736737
.. code-block:: bash
737738
738-
conda install -c arrow-nightlies pyarrow
739-
740-
Note that this requires to use the ``conda-forge`` channel for all other
741-
packages (``conda config --add channels conda-forge``).
742-
743-
Install the development version from an `alternative PyPI
744-
<https://gemfury.com/arrow-nightlies>`_ index:
745-
746-
.. code-block:: bash
747-
748-
pip install --extra-index-url https://pypi.fury.io/arrow-nightlies/ \
749-
--prefer-binary --pre pyarrow
739+
pip install \
740+
-i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
741+
pyarrow

0 commit comments

Comments
 (0)