From c4d6a39d00a2893a39283886ec1eeda5e31bb271 Mon Sep 17 00:00:00 2001 From: Christopher Whelan Date: Sat, 9 Nov 2019 15:44:37 -0800 Subject: [PATCH] DOC: update bottleneck repo url --- doc/computation.rst | 2 +- doc/dask.rst | 2 +- doc/installing.rst | 2 +- doc/whats-new.rst | 2 +- setup.cfg | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/computation.rst b/doc/computation.rst index d477cb63d72..663c546be20 100644 --- a/doc/computation.rst +++ b/doc/computation.rst @@ -183,7 +183,7 @@ a value when aggregating: Note that rolling window aggregations are faster and use less memory when bottleneck_ is installed. This only applies to numpy-backed xarray objects. -.. _bottleneck: https://github.com/kwgoodman/bottleneck/ +.. _bottleneck: https://github.com/pydata/bottleneck/ We can also manually iterate through ``Rolling`` objects: diff --git a/doc/dask.rst b/doc/dask.rst index 5bdbf779463..11f378aa376 100644 --- a/doc/dask.rst +++ b/doc/dask.rst @@ -292,7 +292,7 @@ For the best performance when using Dask's multi-threaded scheduler, wrap a function that already releases the global interpreter lock, which fortunately already includes most NumPy and Scipy functions. Here we show an example using NumPy operations and a fast function from -`bottleneck `__, which +`bottleneck `__, which we use to calculate `Spearman's rank-correlation coefficient `__: .. code-block:: python diff --git a/doc/installing.rst b/doc/installing.rst index 0c5e8916ca3..219cf109efe 100644 --- a/doc/installing.rst +++ b/doc/installing.rst @@ -43,7 +43,7 @@ For accelerating xarray - `scipy `__: necessary to enable the interpolation features for xarray objects -- `bottleneck `__: speeds up +- `bottleneck `__: speeds up NaN-skipping and rolling window aggregations by a large factor - `numbagg `_: for exponential rolling window operations diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 6b3bfb42595..d9c85a19ce6 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -3736,7 +3736,7 @@ Breaking changes warnings: methods and attributes that were deprecated in xray v0.3 or earlier (e.g., ``dimensions``, ``attributes```) have gone away. -.. _bottleneck: https://github.com/kwgoodman/bottleneck +.. _bottleneck: https://github.com/pydata/bottleneck Enhancements ~~~~~~~~~~~~ diff --git a/setup.cfg b/setup.cfg index fec2ca6bbe4..21158e3b0ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [tool:pytest] python_files=test_*.py testpaths=xarray/tests properties -# Fixed upstream in https://github.com/kwgoodman/bottleneck/pull/199 +# Fixed upstream in https://github.com/pydata/bottleneck/pull/199 filterwarnings = ignore:Using a non-tuple sequence for multidimensional indexing is deprecated:FutureWarning env =