Skip to content

Commit 9c25055

Browse files
qwhelanWillAyd
authored andcommitted
DOC: update bottleneck repo and documentation urls (#29516)
1 parent 404e6ba commit 9c25055

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ Recommended dependencies
218218
``numexpr`` uses multiple cores as well as smart chunking and caching to achieve large speedups.
219219
If installed, must be Version 2.6.2 or higher.
220220

221-
* `bottleneck <https://github.com/kwgoodman/bottleneck>`__: for accelerating certain types of ``nan``
221+
* `bottleneck <https://github.com/pydata/bottleneck>`__: for accelerating certain types of ``nan``
222222
evaluations. ``bottleneck`` uses specialized cython routines to achieve large speedups. If installed,
223223
must be Version 1.2.1 or higher.
224224

doc/source/whatsnew/v0.21.0.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Highlights include:
2020
- Integration with `Apache Parquet <https://parquet.apache.org/>`__, including a new top-level :func:`read_parquet` function and :meth:`DataFrame.to_parquet` method, see :ref:`here <whatsnew_0210.enhancements.parquet>`.
2121
- New user-facing :class:`pandas.api.types.CategoricalDtype` for specifying
2222
categoricals independent of the data, see :ref:`here <whatsnew_0210.enhancements.categorical_dtype>`.
23-
- The behavior of ``sum`` and ``prod`` on all-NaN Series/DataFrames is now consistent and no longer depends on whether `bottleneck <http://berkeleyanalytics.com/bottleneck>`__ is installed, and ``sum`` and ``prod`` on empty Series now return NaN instead of 0, see :ref:`here <whatsnew_0210.api_breaking.bottleneck>`.
23+
- The behavior of ``sum`` and ``prod`` on all-NaN Series/DataFrames is now consistent and no longer depends on whether `bottleneck <https://bottleneck.readthedocs.io>`__ is installed, and ``sum`` and ``prod`` on empty Series now return NaN instead of 0, see :ref:`here <whatsnew_0210.api_breaking.bottleneck>`.
2424
- Compatibility fixes for pypy, see :ref:`here <whatsnew_0210.pypy>`.
2525
- Additions to the ``drop``, ``reindex`` and ``rename`` API to make them more consistent, see :ref:`here <whatsnew_0210.enhancements.drop_api>`.
2626
- Addition of the new methods ``DataFrame.infer_objects`` (see :ref:`here <whatsnew_0210.enhancements.infer_objects>`) and ``GroupBy.pipe`` (see :ref:`here <whatsnew_0210.enhancements.GroupBy_pipe>`).
@@ -390,7 +390,7 @@ Sum/Prod of all-NaN or empty Series/DataFrames is now consistently NaN
390390

391391

392392
The behavior of ``sum`` and ``prod`` on all-NaN Series/DataFrames no longer depends on
393-
whether `bottleneck <http://berkeleyanalytics.com/bottleneck>`__ is installed, and return value of ``sum`` and ``prod`` on an empty Series has changed (:issue:`9422`, :issue:`15507`).
393+
whether `bottleneck <https://bottleneck.readthedocs.io>`__ is installed, and return value of ``sum`` and ``prod`` on an empty Series has changed (:issue:`9422`, :issue:`15507`).
394394

395395
Calling ``sum`` or ``prod`` on an empty or all-``NaN`` ``Series``, or columns of a ``DataFrame``, will result in ``NaN``. See the :ref:`docs <missing_data.numeric_sum>`.
396396

doc/source/whatsnew/v0.8.1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Performance improvements
2929
~~~~~~~~~~~~~~~~~~~~~~~~
3030

3131
- Improved implementation of rolling min and max (thanks to `Bottleneck
32-
<http://berkeleyanalytics.com/bottleneck/>`__ !)
32+
<https://bottleneck.readthedocs.io>`__ !)
3333
- Add accelerated ``'median'`` GroupBy option (:issue:`1358`)
3434
- Significantly improve the performance of parsing ISO8601-format date
3535
strings with ``DatetimeIndex`` or ``to_datetime`` (:issue:`1571`)

pandas/_libs/window.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ def roll_median_c(ndarray[float64_t] values, int64_t win, int64_t minp,
11621162

11631163
# Moving maximum / minimum code taken from Bottleneck under the terms
11641164
# of its Simplified BSD license
1165-
# https://github.com/kwgoodman/bottleneck
1165+
# https://github.com/pydata/bottleneck
11661166

11671167

11681168
cdef inline numeric init_mm(numeric ai, Py_ssize_t *nobs, bint is_max) nogil:

0 commit comments

Comments
 (0)