diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 36bc8dcf02bae..d9330e396ed12 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -17,7 +17,9 @@ body: [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas. required: true - label: > - I have confirmed this bug exists on the main branch of pandas. + I have confirmed this bug exists on the [main branch] + (https://pandas.pydata.org/docs/dev/getting_started/install.html#installing-the-development-version-of-pandas) + of pandas. - type: textarea id: example attributes: diff --git a/doc/source/getting_started/install.rst b/doc/source/getting_started/install.rst index 70a27a84a7592..687f00a3dffd9 100644 --- a/doc/source/getting_started/install.rst +++ b/doc/source/getting_started/install.rst @@ -201,6 +201,22 @@ Installing from source See the :ref:`contributing guide ` for complete instructions on building from the git source tree. Further, see :ref:`creating a development environment ` if you wish to create a pandas development environment. +Installing the development version of pandas +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Installing a nightly build is the quickest way to: + +* Try a new feature that will be shipped in the next release (that is, a feature from a pull-request that was recently merged to the main branch). +* Check whether a bug you encountered has been fixed since the last release. + +You can install the nightly build of pandas using the scipy-wheels-nightly index from the PyPI registry of anaconda.org with the following command:: + + pip install --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple pandas + +Note that first uninstalling pandas might be required to be able to install nightly builds:: + + pip uninstall pandas -y + Running the test suite ----------------------