<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">It appears that previous doc links have been broken without redirects? e.g.:<div class=""><br class=""></div><div class=""><a href="https://docs.scipy.org/doc/scipy/reference/generated/scipy.ndimage.distance_transform_edt.html#scipy.ndimage.distance_transform_edt" class="">https://docs.scipy.org/doc/scipy/reference/generated/scipy.ndimage.distance_transform_edt.html#scipy.ndimage.distance_transform_edt</a></div><div class=""><br class=""></div><div class="">is 404. The new link is at:</div><div class=""><br class=""></div><div class=""><a href="https://docs.scipy.org/doc/scipy/reference/reference/generated/scipy.ndimage.distance_transform_edt.html#scipy.ndimage.distance_transform_edt" class="">https://docs.scipy.org/doc/scipy/reference/reference/generated/scipy.ndimage.distance_transform_edt.html#scipy.ndimage.distance_transform_edt</a></div><div class=""><br class=""></div><div class="">Note the extra “reference” in the URL. Was this a conscious choice or an unforeseen side effect of moving to the PyData theme? There’s a *lot* of links to the docs out there.</div><div class=""><br class=""></div><div class="">Juan.<br class=""><div class=""><div><br class=""><blockquote type="cite" class=""><div class="">On 21 Jun 2021, at 5:44 am, Tyler Reddy <<a href="mailto:tyler.je.reddy@gmail.com" class="">tyler.je.reddy@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Hi all,<div class=""><br class=""></div><div class=""><div class="">On behalf of the <span class=""><span class="gmail-il">SciPy</span></span> development team I'm pleased to announce</div><div class="">the release of <span class=""><span class="gmail-il">SciPy</span></span> <span class=""><span class="gmail-il">1.7</span></span>.<span class=""><span class="gmail-il">0</span></span>.</div><div class=""><br class=""></div><div class="">Sources and binary wheels can be found at:<br class=""><a href="https://pypi.org/project/scipy/" target="_blank" class="">https://pypi.org/project/<span class=""><span class="gmail-il">scipy</span></span>/</a><br class="">and at:<br class=""><a href="https://github.com/scipy/scipy/releases/tag/v1.7.0" class="">https://github.com/scipy/scipy/releases/tag/v1.7.0</a> <br class=""><br class="">One of a few ways to install this release with pip:<br class=""><br class="">pip install <span class=""><span class="gmail-il">scipy</span></span>==<span class=""><span class="gmail-il">1.7</span></span>.<span class=""><span class="gmail-il">0</span></span></div><div class=""><span class=""><span class="gmail-il"><br class=""></span></span></div><div class=""><span class=""><span class="gmail-il">=====================<br class="">SciPy 1.7.0 Release Notes<br class="">=====================<br class=""><br class="">SciPy 1.7.0 is the culmination of 6 months of hard work. It contains<br class="">many new features, numerous bug-fixes, improved test coverage and better<br class="">documentation. There have been a number of deprecations and API changes<br class="">in this release, which are documented below. All users are encouraged to<br class="">upgrade to this release, as there are a large number of bug-fixes and<br class="">optimizations. Before upgrading, we recommend that users check that<br class="">their own code does not use deprecated SciPy functionality (to do so,<br class="">run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).<br class="">Our development attention will now shift to bug-fix releases on the<br class="">1.7.x branch, and on adding new features on the master branch.<br class=""><br class="">This release requires Python 3.7+ and NumPy 1.16.5 or greater.<br class=""><br class="">For running on PyPy, PyPy3 6.0+ is required.<br class=""><br class=""><br class="">****************************<br class="">Highlights of this release<br class="">****************************<br class=""><br class="">-  A new submodule for quasi-Monte Carlo, `scipy.stats.qmc`, was added<br class="">-  The documentation design was updated to use the same PyData-Sphinx theme as<br class="">  NumPy and other ecosystem libraries.<br class="">-  We now vendor and leverage the Boost C++ library to enable numerous<br class="">  improvements for long-standing weaknesses in `scipy.stats`<br class="">-  `scipy.stats` has six new distributions, eight new (or overhauled)<br class="">  hypothesis tests, a new function for bootstrapping, a class that enables<br class="">  fast random variate sampling and percentile point function evaluation, <br class="">  and many other enhancements.<br class="">-  ``cdist`` and ``pdist`` distance calculations are faster for several metrics,<br class="">  especially weighted cases, thanks to a rewrite to a new C++ backend framework<br class="">-  A new class for radial basis function interpolation, `RBFInterpolator`, was<br class="">  added to address issues with the `Rbf` class.<br class=""><br class="">We gratefully acknowledge the Chan-Zuckerberg Initiative Essential Open Source<br class="">Software for Science program for supporting many of the improvements to<br class="">`scipy.stats`.<br class=""><br class="">***************<br class="">New features<br class="">***************<br class=""><br class="">`scipy.cluster` improvements<br class="">======================<br class=""><br class="">An optional argument, ``seed``, has been added to ``kmeans`` and ``kmeans2`` to<br class="">set the random generator and random state.<br class=""><br class="">`scipy.interpolate` improvements<br class="">=========================<br class=""><br class="">Improved input validation and error messages for ``fitpack.bispev`` and<br class="">``fitpack.parder`` for scenarios that previously caused substantial confusion<br class="">for users.<br class=""><br class="">The class `RBFInterpolator` was added to supersede the `Rbf` class. The new<br class="">class has usage that more closely follows other interpolator classes, corrects<br class="">sign errors that caused unexpected smoothing behavior, includes polynomial<br class="">terms in the interpolant (which are necessary for some RBF choices), and<br class="">supports interpolation using only the k-nearest neighbors for memory<br class="">efficiency.<br class=""><br class="">`scipy.linalg` improvements<br class="">=====================<br class=""><br class="">An LAPACK wrapper was added for access to the ``tgexc`` subroutine.<br class=""><br class="">`scipy.ndimage` improvements<br class="">=======================<br class=""><br class="">`scipy.ndimage.affine_transform` is now able to infer the ``output_shape`` from<br class="">the ``out`` array.<br class=""><br class="">`scipy.optimize` improvements<br class="">=======================<br class=""><br class="">The optional parameter ``bounds`` was added to<br class="">``_minimize_neldermead`` to support bounds constraints<br class="">for the Nelder-Mead solver.<br class=""><br class="">``trustregion`` methods ``trust-krylov``, ``dogleg`` and ``trust-ncg`` can now<br class="">estimate ``hess`` by finite difference using one of<br class="">``["2-point", "3-point", "cs"]``.<br class=""><br class="">``halton`` was added as a ``sampling_method`` in `scipy.optimize.shgo`.<br class="">``sobol`` was fixed and is now using `scipy.stats.qmc.Sobol`.<br class=""><br class="">``halton`` and ``sobol`` were added as ``init`` methods in<br class="">`scipy.optimize.differential_evolution.`<br class=""><br class="">``differential_evolution`` now accepts an ``x0`` parameter to provide an<br class="">initial guess for the minimization.<br class=""><br class="">``least_squares`` has a modest performance improvement when SciPy is built<br class="">with Pythran transpiler enabled.<br class=""><br class="">When ``linprog`` is used with ``method`` ``'highs'``, ``'highs-ipm'``, or<br class="">``'highs-ds'``, the result object now reports the marginals (AKA shadow<br class="">prices, dual values) and residuals associated with each constraint.<br class=""><br class="">`scipy.signal` improvements<br class="">=====================<br class=""><br class="">``get_window`` supports ``general_cosine`` and ``general_hamming`` window<br class="">functions.<br class=""><br class="">`scipy.signal.medfilt2d` now releases the GIL where appropriate to enable<br class="">performance gains via multithreaded calculations.<br class=""><br class="">`scipy.sparse` improvements<br class="">======================<br class=""><br class="">Addition of ``dia_matrix`` sparse matrices is now faster.<br class=""><br class=""><br class="">`scipy.spatial` improvements<br class="">======================<br class=""><br class="">``distance.cdist`` and ``distance.pdist`` performance has greatly improved for<br class="">certain weighted metrics. Namely: ``minkowski``, ``euclidean``, ``chebyshev``,<br class="">``canberra``, and ``cityblock``.<br class=""><br class="">Modest performance improvements for many of the unweighted ``cdist`` and<br class="">``pdist`` metrics noted above.<br class=""><br class="">The parameter ``seed`` was added to `scipy.spatial.vq.kmeans` and<br class="">`scipy.spatial.vq.kmeans2`.<br class=""><br class="">The parameters ``axis`` and ``keepdims`` where added to<br class="">`scipy.spatial.distance.jensenshannon`.<br class=""><br class="">The ``rotation`` methods ``from_rotvec`` and ``as_rotvec`` now accept a<br class="">``degrees`` argument to specify usage of degrees instead of radians.<br class=""><br class="">`scipy.special` improvements<br class="">======================<br class=""><br class="">Wright's generalized Bessel function for positive arguments was added as<br class="">`scipy.special.wright_bessel.`<br class=""><br class="">An implementation of the inverse of the Log CDF of the Normal Distribution is<br class="">now available via `scipy.special.ndtri_exp`.<br class=""><br class="">`scipy.stats` improvements<br class="">====================<br class=""><br class="">Hypothesis Tests<br class="">-----------------------<br class=""><br class="">The Mann-Whitney-Wilcoxon test, ``mannwhitneyu``, has been rewritten. It now<br class="">supports n-dimensional input, an exact test method when there are no ties,<br class="">and improved documentation. Please see "Other changes" for adjustments to<br class="">default behavior.<br class=""><br class="">The new function `scipy.stats.binomtest` replaces `scipy.stats.binom_test`. The<br class="">new function returns an object that calculates a confidence intervals of the<br class="">proportion parameter. Also, performance was improved from O(n) to O(log(n)) by<br class="">using binary search.<br class=""><br class="">The two-sample version of the Cramer-von Mises test is implemented in<br class="">`scipy.stats.cramervonmises_2samp`.<br class=""><br class="">The Alexander-Govern test is implemented in the new function<br class="">`scipy.stats.alexandergovern`.<br class=""><br class="">The new functions `scipy.stats.barnard_exact` and  `scipy.stats. boschloo_exact`<br class="">respectively perform Barnard's exact test and Boschloo's exact test<br class="">for 2x2 contingency tables.<br class=""><br class="">The new function `scipy.stats.page_trend_test` performs Page's test for ordered<br class="">alternatives.<br class=""><br class="">The new function `scipy.stats.somersd` performs Somers' D test for ordinal<br class="">association between two variables.<br class=""><br class="">An option, ``permutations``, has been added in `scipy.stats.ttest_ind` to<br class="">perform permutation t-tests. A ``trim`` option was also added to perform<br class="">a trimmed (Yuen's) t-test.<br class=""><br class="">The ``alternative`` parameter was added to the ``skewtest``, ``kurtosistest``,<br class="">``ranksums``, ``mood``, ``ansari``, ``linregress``, and ``spearmanr`` functions<br class="">to allow one-sided hypothesis testing.<br class=""><br class="">Sample statistics<br class="">-----------------------<br class=""><br class="">The new function `scipy.stats.differential_entropy` estimates the differential<br class="">entropy of a continuous distribution from a sample.<br class=""><br class="">The ``boxcox`` and ``boxcox_normmax`` now allow the user to control the<br class="">optimizer used to minimize the negative log-likelihood function.<br class=""><br class="">A new function `scipy.stats.contingency.relative_risk` calculates the<br class="">relative risk, or risk ratio, of a 2x2 contingency table. The object<br class="">returned has a method to compute the confidence interval of the relative risk.<br class=""><br class="">Performance improvements in the ``skew`` and ``kurtosis`` functions achieved<br class="">by removal of repeated/redundant calculations.<br class=""><br class="">Substantial performance improvements in `scipy.stats.mstats.hdquantiles_sd`.<br class=""><br class="">The new function `scipy.stats.contingency.association` computes several<br class="">measures of association for a contingency table: Pearsons contingency<br class="">coefficient, Cramer's V, and Tschuprow's T.<br class=""><br class="">The parameter ``nan_policy`` was added to `scipy.stats.zmap` to provide options<br class="">for handling the occurrence of ``nan`` in the input data.<br class=""><br class="">The parameter ``ddof`` was added to `scipy.stats.variation` and<br class="">`scipy.stats.mstats.variation`.<br class=""><br class="">The parameter ``weights`` was added to `scipy.stats.gmean`.<br class=""><br class="">Statistical Distributions<br class="">-------------------------------<br class=""><br class="">We now vendor and leverage the Boost C++ library to address a number of<br class="">previously reported issues in ``stats``. Notably, ``beta``, ``binom``,<br class="">``nbinom`` now have Boost backends, and it is straightforward to leverage<br class="">the backend for additional functions.<br class=""><br class="">The skew Cauchy probability distribution has been implemented as<br class="">`scipy.stats.skewcauchy`.<br class=""><br class="">The Zipfian probability distribution has been implemented as<br class="">`scipy.stats.zipfian`.<br class=""><br class="">The new distributions ``nchypergeom_fisher`` and ``nchypergeom_wallenius``<br class="">implement the Fisher and Wallenius versions of the noncentral hypergeometric<br class="">distribution, respectively.<br class=""><br class="">The generalized hyperbolic distribution was added in<br class="">`scipy.stats.genhyperbolic`.<br class=""><br class="">The studentized range distribution was added in `scipy.stats.studentized_range`.<br class=""><br class="">`scipy.stats.argus` now has improved handling for small parameter values.<br class=""><br class="">Better argument handling/preparation has resulted in performance improvements<br class="">for many distributions.<br class=""><br class="">The ``cosine`` distribution has added ufuncs for ``ppf``, ``cdf``, ``sf``, and<br class="">``isf`` methods including numerical precision improvements at the edges of the<br class="">support of the distribution.<br class=""><br class="">An option to fit the distribution to data by the method of moments has been<br class="">added to the ``fit`` method of the univariate continuous distributions.<br class=""><br class="">Other<br class="">---------<br class="">`scipy.stats.bootstrap` has been added to allow estimation of the confidence<br class="">interval and standard error of a statistic.<br class=""><br class="">The new function `scipy.stats.contingency.crosstab` computes a contingency<br class="">table (i.e. a table of counts of unique entries) for the given data.<br class=""><br class="">`scipy.stats.NumericalInverseHermite` enables fast random variate sampling<br class="">and percentile point function evaluation of an arbitrary univariate statistical<br class="">distribution.<br class=""><br class="">New `scipy.stats.qmc` module<br class="">-----------------------------------------<br class=""><br class="">This new module provides Quasi-Monte Carlo (QMC) generators and associated<br class="">helper functions.<br class=""><br class="">It provides a generic class `scipy.stats.qmc.QMCEngine` which defines a QMC<br class="">engine/sampler. An engine is state aware: it can be continued, advanced and<br class="">reset. 3 base samplers are available:<br class=""><br class="">-  `scipy.stats.qmc.Sobol` the well known Sobol low discrepancy sequence.<br class="">  Several warnings have been added to guide the user into properly using this<br class="">  sampler. The sequence is scrambled by default.<br class="">-  `scipy.stats.qmc.Halton`: Halton low discrepancy sequence. The sequence is<br class="">  scrambled by default.<br class="">-  `scipy.stats.qmc.LatinHypercube`: plain LHS design.<br class=""><br class="">And 2 special samplers are available:<br class=""><br class="">-  `scipy.stats.qmc.MultinomialQMC`: sampling from a multinomial distribution<br class="">  using any of the base `scipy.stats.qmc.QMCEngine`.<br class="">-  `scipy.stats.qmc.MultivariateNormalQMC`: sampling from a multivariate Normal<br class="">  using any of the base `scipy.stats.qmc.QMCEngine`.<br class=""><br class="">The module also provide the following helpers:<br class=""><br class="">-  `scipy.stats.qmc.discrepancy`: assess the quality of a set of points in terms<br class="">  of space coverage.<br class="">-  `scipy.stats.qmc.update_discrepancy`: can be used in an optimization loop to<br class="">  construct a good set of points.<br class="">-  `scipy.stats.qmc.scale`: easily scale a set of points from (to) the unit<br class="">  interval to (from) a given range.<br class=""><br class=""><br class="">***********************<br class="">Deprecated features<br class="">***********************<br class=""><br class="">`scipy.linalg` deprecations<br class="">====================<br class=""><br class="">-  `scipy.linalg.pinv2` is deprecated and its functionality is completely<br class="">  subsumed into `scipy.linalg.pinv`<br class="">-  Both ``rcond``, ``cond`` keywords of `scipy.linalg.pinv` and<br class="">  `scipy.linalg.pinvh` were not working and now are deprecated. They are now<br class="">  replaced with functioning ``atol`` and ``rtol`` keywords with clear usage.<br class=""><br class="">`scipy.spatial` deprecations<br class="">=====================<br class=""><br class="">-  `scipy.spatial.distance` metrics expect 1d input vectors but will call<br class="">  ``np.squeeze`` on their inputs to accept any extra length-1 dimensions. That<br class="">  behaviour is now deprecated.<br class=""><br class="">*****************<br class="">Other changes<br class="">*****************<br class=""><br class="">We now accept and leverage performance improvements from the ahead-of-time<br class="">Python-to-C++ transpiler, Pythran, which can be optionally disabled (via<br class="">``export SCIPY_USE_PYTHRAN=0``) but is enabled by default at build time.<br class=""><br class="">There are two changes to the default behavior of `scipy.stats.mannwhitenyu`:<br class=""><br class="">-  For years, use of the default ``alternative=None`` was deprecated; explicit<br class="">  ``alternative`` specification was required. Use of the new default value of<br class="">  ``alternative``, "two-sided", is now permitted.<br class="">-  Previously, all p-values were based on an asymptotic approximation. Now, for<br class="">  small samples without ties, the p-values returned are exact by default.<br class=""><br class="">Support has been added for PEP 621 (project metadata in ``pyproject.toml``)<br class=""><br class="">We now support a Gitpod environment to reduce the barrier to entry for SciPy<br class="">development; for more details see :ref:`quickstart-gitpod`.<br class=""><br class=""><br class="">*********<br class="">Authors<br class="">*********<br class=""><br class="">* @endolith<br class="">* Jelle Aalbers +<br class="">* Adam +<br class="">* Tania Allard +<br class="">* Sven Baars +<br class="">* Max Balandat +<br class="">* baumgarc +<br class="">* Christoph Baumgarten<br class="">* Peter Bell<br class="">* Lilian Besson<br class="">* Robinson Besson +<br class="">* Max Bolingbroke<br class="">* Blair Bonnett +<br class="">* Jordão Bragantini<br class="">* Harm Buisman +<br class="">* Evgeni Burovski<br class="">* Matthias Bussonnier<br class="">* Dominic C<br class="">* CJ Carey<br class="">* Ramón Casero +<br class="">* Chachay +<br class="">* charlotte12l +<br class="">* Benjamin Curtice Corbett +<br class="">* Falcon Dai +<br class="">* Ian Dall +<br class="">* Terry Davis<br class="">* droussea2001 +<br class="">* DWesl +<br class="">* dwight200 +<br class="">* Thomas J. Fan +<br class="">* Joseph Fox-Rabinovitz<br class="">* Max Frei +<br class="">* Laura Gutierrez Funderburk +<br class="">* gbonomib +<br class="">* Matthias Geier +<br class="">* Pradipta Ghosh +<br class="">* Ralf Gommers<br class="">* Evan H +<br class="">* h-vetinari<br class="">* Matt Haberland<br class="">* Anselm Hahn +<br class="">* Alex Henrie<br class="">* Piet Hessenius +<br class="">* Trever Hines +<br class="">* Elisha Hollander +<br class="">* Stephan Hoyer<br class="">* Tom Hu +<br class="">* Kei Ishikawa +<br class="">* Julien Jerphanion<br class="">* Robert Kern<br class="">* Shashank KS +<br class="">* Peter Mahler Larsen<br class="">* Eric Larson<br class="">* Cheng H. Lee +<br class="">* Gregory R. Lee<br class="">* Jean-Benoist Leger +<br class="">* lgfunderburk +<br class="">* liam-o-marsh +<br class="">* Xingyu Liu +<br class="">* Alex Loftus +<br class="">* Christian Lorentzen +<br class="">* Cong Ma<br class="">* Marc +<br class="">* MarkPundurs +<br class="">* Markus Löning +<br class="">* Liam Marsh +<br class="">* Nicholas McKibben<br class="">* melissawm +<br class="">* Jamie Morton<br class="">* Andrew Nelson<br class="">* Nikola Forró<br class="">* Tor Nordam +<br class="">* Olivier Gauthé +<br class="">* Rohit Pandey +<br class="">* Avanindra Kumar Pandeya +<br class="">* Tirth Patel<br class="">* paugier +<br class="">* Alex H. Wagner, PhD +<br class="">* Jeff Plourde +<br class="">* Ilhan Polat<br class="">* pranavrajpal +<br class="">* Vladyslav Rachek<br class="">* Bharat Raghunathan<br class="">* Recursing +<br class="">* Tyler Reddy<br class="">* Lucas Roberts<br class="">* Gregor Robinson +<br class="">* Pamphile Roy +<br class="">* Atsushi Sakai<br class="">* Benjamin Santos<br class="">* Martin K. Scherer +<br class="">* Thomas Schmelzer +<br class="">* Daniel Scott +<br class="">* Sebastian Wallkötter +<br class="">* serge-sans-paille +<br class="">* Namami Shanker +<br class="">* Masashi Shibata +<br class="">* Alexandre de Siqueira +<br class="">* Albert Steppi +<br class="">* Adam J. Stewart +<br class="">* Kai Striega<br class="">* Diana Sukhoverkhova<br class="">* Søren Fuglede Jørgensen<br class="">* Mike Taves<br class="">* Dan Temkin +<br class="">* Nicolas Tessore +<br class="">* tsubota20 +<br class="">* Robert Uhl<br class="">* christos val +<br class="">* Bas van Beek +<br class="">* Ashutosh Varma +<br class="">* Jose Vazquez +<br class="">* Sebastiano Vigna<br class="">* Aditya Vijaykumar<br class="">* VNMabus<br class="">* Arthur Volant +<br class="">* Samuel Wallan<br class="">* Stefan van der Walt<br class="">* Warren Weckesser<br class="">* Anreas Weh<br class="">* Josh Wilson<br class="">* Rory Yorke<br class="">* Egor Zemlyanoy<br class="">* Marc Zoeller +<br class="">* zoj613 +<br class="">* 秋纫 +<br class=""><br class="">A total of 126 people contributed to this release.<br class="">People with a "+" by their names contributed a patch for the first time.<br class="">This list of names is automatically generated, and may not be fully complete.<br class=""><br class="">**************************<br class="">Issues closed for 1.7.0<br class="">**************************<br class=""><br class="">* `#636 <<a href="https://github.com/scipy/scipy/issues/636" class="">https://github.com/scipy/scipy/issues/636</a>>`__: Statistics Review: mannwhitneyu (Trac #109)<br class="">* `#1346 <<a href="https://github.com/scipy/scipy/issues/1346" class="">https://github.com/scipy/scipy/issues/1346</a>>`__: signal.medfilt2d should fall back on signal.medfilt for types...<br class="">* `#2118 <<a href="https://github.com/scipy/scipy/issues/2118" class="">https://github.com/scipy/scipy/issues/2118</a>>`__: Mann-Whitney statistic returns incorrect results (Trac #1593)<br class="">* `#2158 <<a href="https://github.com/scipy/scipy/issues/2158" class="">https://github.com/scipy/scipy/issues/2158</a>>`__: special.chndtrix (ncx2.ppf) gives wrong results (Trac #1633)<br class="">* `#3284 <<a href="https://github.com/scipy/scipy/issues/3284" class="">https://github.com/scipy/scipy/issues/3284</a>>`__: build_sphinx weirdness<br class="">* `#3352 <<a href="https://github.com/scipy/scipy/issues/3352" class="">https://github.com/scipy/scipy/issues/3352</a>>`__: beta distribution sf<br class="">* `#4067 <<a href="https://github.com/scipy/scipy/issues/4067" class="">https://github.com/scipy/scipy/issues/4067</a>>`__: Mannwhitneyu with arrays full of nan still reports significance<br class="">* `#4080 <<a href="https://github.com/scipy/scipy/issues/4080" class="">https://github.com/scipy/scipy/issues/4080</a>>`__: entropy in Scipy<br class="">* `#4641 <<a href="https://github.com/scipy/scipy/issues/4641" class="">https://github.com/scipy/scipy/issues/4641</a>>`__: mstats.mannwhitneyu and stats.mannwhitneyu return inconsistent...<br class="">* `#5122 <<a href="https://github.com/scipy/scipy/issues/5122" class="">https://github.com/scipy/scipy/issues/5122</a>>`__: scipy.stats.binom.ppf Incorrect for p=0<br class="">* `#5180 <<a href="https://github.com/scipy/scipy/issues/5180" class="">https://github.com/scipy/scipy/issues/5180</a>>`__: Rbf interpolation - use only K nearest neighbors<br class="">* `#5258 <<a href="https://github.com/scipy/scipy/issues/5258" class="">https://github.com/scipy/scipy/issues/5258</a>>`__: affine_transform complains about output_shape when output array...<br class="">* `#5562 <<a href="https://github.com/scipy/scipy/issues/5562" class="">https://github.com/scipy/scipy/issues/5562</a>>`__: Wishart degrees of freedom should be $v > p-1$ instead of $v...<br class="">* `#5933 <<a href="https://github.com/scipy/scipy/issues/5933" class="">https://github.com/scipy/scipy/issues/5933</a>>`__: mstats_basic.py - mannwhitneyu [scipy/scipy/stats/mstats_basic.py]<br class="">* `#6409 <<a href="https://github.com/scipy/scipy/issues/6409" class="">https://github.com/scipy/scipy/issues/6409</a>>`__: _unequal_var_ttest_denom causes ZeroDivisionError in early samples<br class="">* `#6682 <<a href="https://github.com/scipy/scipy/issues/6682" class="">https://github.com/scipy/scipy/issues/6682</a>>`__: negative binomial survival function is imprecise<br class="">* `#6897 <<a href="https://github.com/scipy/scipy/issues/6897" class="">https://github.com/scipy/scipy/issues/6897</a>>`__: scipy.stats.mannwhitneyu of empty sets gives p=0.0 and does not...<br class="">* `#7303 <<a href="https://github.com/scipy/scipy/issues/7303" class="">https://github.com/scipy/scipy/issues/7303</a>>`__: stats.describe with nan_policy=omit returns matrix-wide minmax...<br class="">* `#7406 <<a href="https://github.com/scipy/scipy/issues/7406" class="">https://github.com/scipy/scipy/issues/7406</a>>`__: scipy.stats.binom.ppf returns nan for q between 0 and 1 if n...<br class="">* `#7437 <<a href="https://github.com/scipy/scipy/issues/7437" class="">https://github.com/scipy/scipy/issues/7437</a>>`__: ENH: add skewed Cauchy distribution to stats<br class="">* `#7542 <<a href="https://github.com/scipy/scipy/issues/7542" class="">https://github.com/scipy/scipy/issues/7542</a>>`__: DOC: stats tutorials: Questions on arcsine and Student t formulae<br class="">* `#7593 <<a href="https://github.com/scipy/scipy/issues/7593" class="">https://github.com/scipy/scipy/issues/7593</a>>`__: Meaning of \`tol\` argument in \`scipy.optimize.minimize\` is...<br class="">* `#8565 <<a href="https://github.com/scipy/scipy/issues/8565" class="">https://github.com/scipy/scipy/issues/8565</a>>`__: Error in SmoothSphereBivariateSpline(): "ValueError: Error code...<br class="">* `#8665 <<a href="https://github.com/scipy/scipy/issues/8665" class="">https://github.com/scipy/scipy/issues/8665</a>>`__: \`scipy.ncx2.sf\` should be monotone decreasing<br class="">* `#8836 <<a href="https://github.com/scipy/scipy/issues/8836" class="">https://github.com/scipy/scipy/issues/8836</a>>`__: scipy.optimize.linprog(method='simplex') needs to return duals<br class="">* `#9184 <<a href="https://github.com/scipy/scipy/issues/9184" class="">https://github.com/scipy/scipy/issues/9184</a>>`__: Mann-Whitney implementation wrong?<br class="">* `#9450 <<a href="https://github.com/scipy/scipy/issues/9450" class="">https://github.com/scipy/scipy/issues/9450</a>>`__: allow seeding of init methods in vq.kmeans2<br class="">* `#9704 <<a href="https://github.com/scipy/scipy/issues/9704" class="">https://github.com/scipy/scipy/issues/9704</a>>`__: RectSphereBivariateSpline fails for negative longitude<br class="">* `#9836 <<a href="https://github.com/scipy/scipy/issues/9836" class="">https://github.com/scipy/scipy/issues/9836</a>>`__: scipy.stats.rice gives incorrect results when s is very low compared...<br class="">* `#9904 <<a href="https://github.com/scipy/scipy/issues/9904" class="">https://github.com/scipy/scipy/issues/9904</a>>`__: Request/Proposal: Greatly improve scipy.interpolate.Rbf<br class="">* `#9981 <<a href="https://github.com/scipy/scipy/issues/9981" class="">https://github.com/scipy/scipy/issues/9981</a>>`__: stats.kruskal : add a warning for an input with 2 or more columns<br class="">* `#10358 <<a href="https://github.com/scipy/scipy/issues/10358" class="">https://github.com/scipy/scipy/issues/10358</a>>`__: DOC: linprog and linear_sum_assignment tutorials needed<br class="">* `#10908 <<a href="https://github.com/scipy/scipy/issues/10908" class="">https://github.com/scipy/scipy/issues/10908</a>>`__: Nakami fitting doesn't converge (scipy.stats)<br class="">* `#10933 <<a href="https://github.com/scipy/scipy/issues/10933" class="">https://github.com/scipy/scipy/issues/10933</a>>`__: Add scaled inverse chi2 distribution<br class="">* `#11014 <<a href="https://github.com/scipy/scipy/issues/11014" class="">https://github.com/scipy/scipy/issues/11014</a>>`__: Barnard's Test for More Powerful Hypothesis Testing of 2x2 Contingency...<br class="">* `#11050 <<a href="https://github.com/scipy/scipy/issues/11050" class="">https://github.com/scipy/scipy/issues/11050</a>>`__: Feature request: Nelder-Mead with bounds<br class="">* `#11086 <<a href="https://github.com/scipy/scipy/issues/11086" class="">https://github.com/scipy/scipy/issues/11086</a>>`__: scipy.stats.skew doesn't work correctly for float point numbers<br class="">* `#11113 <<a href="https://github.com/scipy/scipy/issues/11113" class="">https://github.com/scipy/scipy/issues/11113</a>>`__: inconsistent result from ttest_ind and mannwhitneyu when used...<br class="">* `#11134 <<a href="https://github.com/scipy/scipy/issues/11134" class="">https://github.com/scipy/scipy/issues/11134</a>>`__: Wrong confidence interval for binomial distribution with p=0<br class="">* `#11325 <<a href="https://github.com/scipy/scipy/issues/11325" class="">https://github.com/scipy/scipy/issues/11325</a>>`__: Add axis parameter for scipy.spatial.distance.jensenshannon<br class="">* `#11474 <<a href="https://github.com/scipy/scipy/issues/11474" class="">https://github.com/scipy/scipy/issues/11474</a>>`__: scipy.stats.skellam.cdf(0) returns 0 for large mu1 = mu2<br class="">* `#11523 <<a href="https://github.com/scipy/scipy/issues/11523" class="">https://github.com/scipy/scipy/issues/11523</a>>`__: scipy.stats.zipf doesn't implement zipf distribution<br class="">* `#11848 <<a href="https://github.com/scipy/scipy/issues/11848" class="">https://github.com/scipy/scipy/issues/11848</a>>`__: How to get Lagrange / lambda multipliers out of 'linprog' optimize...<br class="">* `#11909 <<a href="https://github.com/scipy/scipy/issues/11909" class="">https://github.com/scipy/scipy/issues/11909</a>>`__: Enable bounds for lambda in boxcox<br class="">* `#12118 <<a href="https://github.com/scipy/scipy/issues/12118" class="">https://github.com/scipy/scipy/issues/12118</a>>`__: Docstring missing defaults<br class="">* `#12132 <<a href="https://github.com/scipy/scipy/issues/12132" class="">https://github.com/scipy/scipy/issues/12132</a>>`__: Slow tests to be trimmed or moved to test('full')<br class="">* `#12230 <<a href="https://github.com/scipy/scipy/issues/12230" class="">https://github.com/scipy/scipy/issues/12230</a>>`__: Dendrogram: enable leaves labelling with 'labels' when using...<br class="">* `#12282 <<a href="https://github.com/scipy/scipy/issues/12282" class="">https://github.com/scipy/scipy/issues/12282</a>>`__: scipy.stats.chisquare test does not check that observed and expected...<br class="">* `#12298 <<a href="https://github.com/scipy/scipy/issues/12298" class="">https://github.com/scipy/scipy/issues/12298</a>>`__: BUG: fmin_powell missing squeeze in 1.5.0rc<br class="">* `#12403 <<a href="https://github.com/scipy/scipy/issues/12403" class="">https://github.com/scipy/scipy/issues/12403</a>>`__: Add nan_policy to stats.zmap<br class="">* `#12518 <<a href="https://github.com/scipy/scipy/issues/12518" class="">https://github.com/scipy/scipy/issues/12518</a>>`__: Null hypothesis of Kolmogorov Smirnov test is not correctly described<br class="">* `#12534 <<a href="https://github.com/scipy/scipy/issues/12534" class="">https://github.com/scipy/scipy/issues/12534</a>>`__: Feature request: scipy.linalg.norm to deal with 0-size array<br class="">* `#12622 <<a href="https://github.com/scipy/scipy/issues/12622" class="">https://github.com/scipy/scipy/issues/12622</a>>`__: scipy.interpolate.interpn docstring example<br class="">* `#12635 <<a href="https://github.com/scipy/scipy/issues/12635" class="">https://github.com/scipy/scipy/issues/12635</a>>`__: scipy.stats.beta.ppf gives unexpexted results<br class="">* `#12669 <<a href="https://github.com/scipy/scipy/issues/12669" class="">https://github.com/scipy/scipy/issues/12669</a>>`__: Median-averaging of complex CSDs<br class="">* `#12731 <<a href="https://github.com/scipy/scipy/issues/12731" class="">https://github.com/scipy/scipy/issues/12731</a>>`__: stats.ncx2.cdf fails for nc >> x >> 1<br class="">* `#12778 <<a href="https://github.com/scipy/scipy/issues/12778" class="">https://github.com/scipy/scipy/issues/12778</a>>`__: Confusing documentation of scipy.stats.weightedtau<br class="">* `#12794 <<a href="https://github.com/scipy/scipy/issues/12794" class="">https://github.com/scipy/scipy/issues/12794</a>>`__: [Bug] The result of stats.beta.isf is inconsistent with stats.beta.sf<br class="">* `#12837 <<a href="https://github.com/scipy/scipy/issues/12837" class="">https://github.com/scipy/scipy/issues/12837</a>>`__: stats.mannwhitneyu could support arrays<br class="">* `#12868 <<a href="https://github.com/scipy/scipy/issues/12868" class="">https://github.com/scipy/scipy/issues/12868</a>>`__: Vector-valued interpolation in \`interp2d\`<br class="">* `#12922 <<a href="https://github.com/scipy/scipy/issues/12922" class="">https://github.com/scipy/scipy/issues/12922</a>>`__: Minimize with trust-constr method leads to TypeError if option...<br class="">* `#12929 <<a href="https://github.com/scipy/scipy/issues/12929" class="">https://github.com/scipy/scipy/issues/12929</a>>`__: The use of starred expressions to create data detracts from understanding...<br class="">* `#12965 <<a href="https://github.com/scipy/scipy/issues/12965" class="">https://github.com/scipy/scipy/issues/12965</a>>`__: domain of argument of scipy.interpolate.RectSphereBivariateSpline(u,...<br class="">* `#13025 <<a href="https://github.com/scipy/scipy/issues/13025" class="">https://github.com/scipy/scipy/issues/13025</a>>`__: Generalized Hyperbolic Distribution<br class="">* `#13090 <<a href="https://github.com/scipy/scipy/issues/13090" class="">https://github.com/scipy/scipy/issues/13090</a>>`__: Broken link in doc for signal.max_len_seq<br class="">* `#13101 <<a href="https://github.com/scipy/scipy/issues/13101" class="">https://github.com/scipy/scipy/issues/13101</a>>`__: MAINT: Upgrade python version in docker file<br class="">* `#13158 <<a href="https://github.com/scipy/scipy/issues/13158" class="">https://github.com/scipy/scipy/issues/13158</a>>`__: \`signal.get_window()\` has a missing doc link and cannot get...<br class="">* `#13173 <<a href="https://github.com/scipy/scipy/issues/13173" class="">https://github.com/scipy/scipy/issues/13173</a>>`__: Uninformative error message from bisplev function<br class="">* `#13234 <<a href="https://github.com/scipy/scipy/issues/13234" class="">https://github.com/scipy/scipy/issues/13234</a>>`__: BUG: stats: Wrong shape of burr.moment() and fisk.moment() when...<br class="">* `#13242 <<a href="https://github.com/scipy/scipy/issues/13242" class="">https://github.com/scipy/scipy/issues/13242</a>>`__: Does kmeans "drop" clusters?<br class="">* `#13243 <<a href="https://github.com/scipy/scipy/issues/13243" class="">https://github.com/scipy/scipy/issues/13243</a>>`__: tgsen uses an output argument for computing a default argument<br class="">* `#13245 <<a href="https://github.com/scipy/scipy/issues/13245" class="">https://github.com/scipy/scipy/issues/13245</a>>`__: Kurtosis returning 1 for array of same elements<br class="">* `#13257 <<a href="https://github.com/scipy/scipy/issues/13257" class="">https://github.com/scipy/scipy/issues/13257</a>>`__: GitHub Actions test failures for MacOS<br class="">* `#13272 <<a href="https://github.com/scipy/scipy/issues/13272" class="">https://github.com/scipy/scipy/issues/13272</a>>`__: scipy.stats.yeojohnson_llf doc mistake<br class="">* `#13280 <<a href="https://github.com/scipy/scipy/issues/13280" class="">https://github.com/scipy/scipy/issues/13280</a>>`__: Wrong results with hypergeom cdf<br class="">* `#13285 <<a href="https://github.com/scipy/scipy/issues/13285" class="">https://github.com/scipy/scipy/issues/13285</a>>`__: description correction in scipy.stats.t<br class="">* `#13287 <<a href="https://github.com/scipy/scipy/issues/13287" class="">https://github.com/scipy/scipy/issues/13287</a>>`__: Generate binomial CDF with mu instead of prob<br class="">* `#13294 <<a href="https://github.com/scipy/scipy/issues/13294" class="">https://github.com/scipy/scipy/issues/13294</a>>`__: BUG: stats: wrong bounds returned by 'support' method for distributions...<br class="">* `#13299 <<a href="https://github.com/scipy/scipy/issues/13299" class="">https://github.com/scipy/scipy/issues/13299</a>>`__: Typing for scipy.spatial<br class="">* `#13300 <<a href="https://github.com/scipy/scipy/issues/13300" class="">https://github.com/scipy/scipy/issues/13300</a>>`__: Add a single individual to a latinhypercube initial population...<br class="">* `#13311 <<a href="https://github.com/scipy/scipy/issues/13311" class="">https://github.com/scipy/scipy/issues/13311</a>>`__: MAINT: pavement.py PYVER is outdated<br class="">* `#13339 <<a href="https://github.com/scipy/scipy/issues/13339" class="">https://github.com/scipy/scipy/issues/13339</a>>`__: savemat discards dimension information if any dimension is zero<br class="">* `#13341 <<a href="https://github.com/scipy/scipy/issues/13341" class="">https://github.com/scipy/scipy/issues/13341</a>>`__: add scipy.stats.variation with an ddof parameter<br class="">* `#13353 <<a href="https://github.com/scipy/scipy/issues/13353" class="">https://github.com/scipy/scipy/issues/13353</a>>`__: Documentation: in scipy.stats.johnsonsu, parameter \`a\` can...<br class="">* `#13405 <<a href="https://github.com/scipy/scipy/issues/13405" class="">https://github.com/scipy/scipy/issues/13405</a>>`__: TST: add a few tests for sparse BSR ctor<br class="">* `#13410 <<a href="https://github.com/scipy/scipy/issues/13410" class="">https://github.com/scipy/scipy/issues/13410</a>>`__: BUG: skew for empty array raises<br class="">* `#13417 <<a href="https://github.com/scipy/scipy/issues/13417" class="">https://github.com/scipy/scipy/issues/13417</a>>`__: 10,000 times speedup for generating random numbers from the cosine...<br class="">* `#13440 <<a href="https://github.com/scipy/scipy/issues/13440" class="">https://github.com/scipy/scipy/issues/13440</a>>`__: python runtest.py -t path-to-test.py failed<br class="">* `#13454 <<a href="https://github.com/scipy/scipy/issues/13454" class="">https://github.com/scipy/scipy/issues/13454</a>>`__: Scipy cosine distance can be greater than 2<br class="">* `#13459 <<a href="https://github.com/scipy/scipy/issues/13459" class="">https://github.com/scipy/scipy/issues/13459</a>>`__: Broken link in cramervonmises documentation<br class="">* `#13494 <<a href="https://github.com/scipy/scipy/issues/13494" class="">https://github.com/scipy/scipy/issues/13494</a>>`__: One-word typo in the documentation of optimize.linprog_simplex<br class="">* `#13501 <<a href="https://github.com/scipy/scipy/issues/13501" class="">https://github.com/scipy/scipy/issues/13501</a>>`__: minimize using Powell methods with Bounds leads to "TypeError:...<br class="">* `#13509 <<a href="https://github.com/scipy/scipy/issues/13509" class="">https://github.com/scipy/scipy/issues/13509</a>>`__: signal.medfilt2d vs ndimage.median_filter<br class="">* `#13511 <<a href="https://github.com/scipy/scipy/issues/13511" class="">https://github.com/scipy/scipy/issues/13511</a>>`__: DOC: error in description of "direc" parameter of "fmin_powell"<br class="">* `#13526 <<a href="https://github.com/scipy/scipy/issues/13526" class="">https://github.com/scipy/scipy/issues/13526</a>>`__: TST: stats: intermittent \`test_ttest_ind_randperm_alternative2...<br class="">* `#13536 <<a href="https://github.com/scipy/scipy/issues/13536" class="">https://github.com/scipy/scipy/issues/13536</a>>`__: \`_within_tolerance\` seems an unnecessary repetition of \`numpy.isclose\`<br class="">* `#13540 <<a href="https://github.com/scipy/scipy/issues/13540" class="">https://github.com/scipy/scipy/issues/13540</a>>`__: missing python 3.8 manylinux wheels on scipy-wheels-nightly<br class="">* `#13559 <<a href="https://github.com/scipy/scipy/issues/13559" class="">https://github.com/scipy/scipy/issues/13559</a>>`__: shape error in linprog with revised simplex<br class="">* `#13587 <<a href="https://github.com/scipy/scipy/issues/13587" class="">https://github.com/scipy/scipy/issues/13587</a>>`__: binned_statistic unreliable with single precision<br class="">* `#13589 <<a href="https://github.com/scipy/scipy/issues/13589" class="">https://github.com/scipy/scipy/issues/13589</a>>`__: Better argument preparation for distributions in stats package.<br class="">* `#13602 <<a href="https://github.com/scipy/scipy/issues/13602" class="">https://github.com/scipy/scipy/issues/13602</a>>`__: The crystallball distribution entropy is sometimes minus infinity<br class="">* `#13606 <<a href="https://github.com/scipy/scipy/issues/13606" class="">https://github.com/scipy/scipy/issues/13606</a>>`__: MAINT: mypy: some typing errors while running mypy + adding mypy...<br class="">* `#13608 <<a href="https://github.com/scipy/scipy/issues/13608" class="">https://github.com/scipy/scipy/issues/13608</a>>`__: Why does stats.binned_statistic_2d convert its values argument...<br class="">* `#13609 <<a href="https://github.com/scipy/scipy/issues/13609" class="">https://github.com/scipy/scipy/issues/13609</a>>`__: BUG: SciPy pip install -e gets unusable version spec<br class="">* `#13610 <<a href="https://github.com/scipy/scipy/issues/13610" class="">https://github.com/scipy/scipy/issues/13610</a>>`__: Highs solver did not provide a solution nor did it report a failure<br class="">* `#13614 <<a href="https://github.com/scipy/scipy/issues/13614" class="">https://github.com/scipy/scipy/issues/13614</a>>`__: BUG: invgauss.cdf should return the correct value when \`mu\`...<br class="">* `#13628 <<a href="https://github.com/scipy/scipy/issues/13628" class="">https://github.com/scipy/scipy/issues/13628</a>>`__: 1-letter typo in the definition of scipy.special.spence function...<br class="">* `#13634 <<a href="https://github.com/scipy/scipy/issues/13634" class="">https://github.com/scipy/scipy/issues/13634</a>>`__: mmwrite fails on dense, skew-symmetric array<br class="">* `#13646 <<a href="https://github.com/scipy/scipy/issues/13646" class="">https://github.com/scipy/scipy/issues/13646</a>>`__: Sparse matrix argmax() integer overflow on Windows 10<br class="">* `#13647 <<a href="https://github.com/scipy/scipy/issues/13647" class="">https://github.com/scipy/scipy/issues/13647</a>>`__: \`scipy.stats.qmc.LatinHypercube\` cannot sample single sample...<br class="">* `#13651 <<a href="https://github.com/scipy/scipy/issues/13651" class="">https://github.com/scipy/scipy/issues/13651</a>>`__: Documentation wrong in scipy.linalg.eigvalsh<br class="">* `#13664 <<a href="https://github.com/scipy/scipy/issues/13664" class="">https://github.com/scipy/scipy/issues/13664</a>>`__: BUG: gamma distribution's inverse survival function overflows...<br class="">* `#13693 <<a href="https://github.com/scipy/scipy/issues/13693" class="">https://github.com/scipy/scipy/issues/13693</a>>`__: BUG: sokalmichener appears to incorrectly apply weights<br class="">* `#13697 <<a href="https://github.com/scipy/scipy/issues/13697" class="">https://github.com/scipy/scipy/issues/13697</a>>`__: BUG: stats: Spurious warning generated by arcsine.pdf at the...<br class="">* `#13704 <<a href="https://github.com/scipy/scipy/issues/13704" class="">https://github.com/scipy/scipy/issues/13704</a>>`__: Make it possible to pass a rank cut-off value relatively to the...<br class="">* `#13707 <<a href="https://github.com/scipy/scipy/issues/13707" class="">https://github.com/scipy/scipy/issues/13707</a>>`__: Kullback Leibler Divergence broadcasting no longer works<br class="">* `#13740 <<a href="https://github.com/scipy/scipy/issues/13740" class="">https://github.com/scipy/scipy/issues/13740</a>>`__: Scipy.optimize x0 out of bounds when it is within bounds.<br class="">* `#13744 <<a href="https://github.com/scipy/scipy/issues/13744" class="">https://github.com/scipy/scipy/issues/13744</a>>`__: scipy.interpolate.interp1d has inconsistent behavior for non-unique...<br class="">* `#13754 <<a href="https://github.com/scipy/scipy/issues/13754" class="">https://github.com/scipy/scipy/issues/13754</a>>`__: optimize.minimize 'trust' methods and finite difference Hessian...<br class="">* `#13762 <<a href="https://github.com/scipy/scipy/issues/13762" class="">https://github.com/scipy/scipy/issues/13762</a>>`__: MAINT, TST: aarch64 stats test failures showing up in wheels...<br class="">* `#13769 <<a href="https://github.com/scipy/scipy/issues/13769" class="">https://github.com/scipy/scipy/issues/13769</a>>`__: probplot draws fit line even when fit=False<br class="">* `#13791 <<a href="https://github.com/scipy/scipy/issues/13791" class="">https://github.com/scipy/scipy/issues/13791</a>>`__: BUG: stats: wrapcauchy.cdf does not broadcast the shape parameter...<br class="">* `#13793 <<a href="https://github.com/scipy/scipy/issues/13793" class="">https://github.com/scipy/scipy/issues/13793</a>>`__: CI: CircleCI doc build failure<br class="">* `#13840 <<a href="https://github.com/scipy/scipy/issues/13840" class="">https://github.com/scipy/scipy/issues/13840</a>>`__: manylinux1 builds are failing because of C99 usage in \`special/_cosine.c\`<br class="">* `#13850 <<a href="https://github.com/scipy/scipy/issues/13850" class="">https://github.com/scipy/scipy/issues/13850</a>>`__: CI: Homebrew is failing due to bintray<br class="">* `#13875 <<a href="https://github.com/scipy/scipy/issues/13875" class="">https://github.com/scipy/scipy/issues/13875</a>>`__: BUG: chi2_contingency with Yates correction<br class="">* `#13878 <<a href="https://github.com/scipy/scipy/issues/13878" class="">https://github.com/scipy/scipy/issues/13878</a>>`__: BUG: \`signal.get_window\` argument handling issue<br class="">* `#13880 <<a href="https://github.com/scipy/scipy/issues/13880" class="">https://github.com/scipy/scipy/issues/13880</a>>`__: Remove all usages of numpy.compat<br class="">* `#13896 <<a href="https://github.com/scipy/scipy/issues/13896" class="">https://github.com/scipy/scipy/issues/13896</a>>`__: Boschloo's Test for More Powerful Hypothesis Testing of 2x2 Contingency...<br class="">* `#13923 <<a href="https://github.com/scipy/scipy/issues/13923" class="">https://github.com/scipy/scipy/issues/13923</a>>`__: Inverse of Log CDF of Normal Distribution<br class="">* `#13933 <<a href="https://github.com/scipy/scipy/issues/13933" class="">https://github.com/scipy/scipy/issues/13933</a>>`__: \`signal.get_window\` does not support \`general_cosine\` and...<br class="">* `#13950 <<a href="https://github.com/scipy/scipy/issues/13950" class="">https://github.com/scipy/scipy/issues/13950</a>>`__: DOC: scipy.spatial.KDTree.query<br class="">* `#13969 <<a href="https://github.com/scipy/scipy/issues/13969" class="">https://github.com/scipy/scipy/issues/13969</a>>`__: N=4 must not exceed M=3<br class="">* `#13970 <<a href="https://github.com/scipy/scipy/issues/13970" class="">https://github.com/scipy/scipy/issues/13970</a>>`__: Pearson's original paper on chi-square test could be referenced.<br class="">* `#13984 <<a href="https://github.com/scipy/scipy/issues/13984" class="">https://github.com/scipy/scipy/issues/13984</a>>`__: Faster addition of sparse diagonal matrices<br class="">* `#13988 <<a href="https://github.com/scipy/scipy/issues/13988" class="">https://github.com/scipy/scipy/issues/13988</a>>`__: An error occurred when using scipy.io.wavfile of scipy 1.6 version...<br class="">* `#13997 <<a href="https://github.com/scipy/scipy/issues/13997" class="">https://github.com/scipy/scipy/issues/13997</a>>`__: BUG: sparse: Incorrect result from \`dia_matrix.diagonal()\`<br class="">* `#14005 <<a href="https://github.com/scipy/scipy/issues/14005" class="">https://github.com/scipy/scipy/issues/14005</a>>`__: MAINT: optimize: \`curve_fit\` input error msg can be improved.<br class="">* `#14038 <<a href="https://github.com/scipy/scipy/issues/14038" class="">https://github.com/scipy/scipy/issues/14038</a>>`__: MAINT: add type annotations for _sobol.pyx<br class="">* `#14048 <<a href="https://github.com/scipy/scipy/issues/14048" class="">https://github.com/scipy/scipy/issues/14048</a>>`__: DOC: missing git submodule information<br class="">* `#14055 <<a href="https://github.com/scipy/scipy/issues/14055" class="">https://github.com/scipy/scipy/issues/14055</a>>`__: linalg.solve: Unclear error when using assume_a='her' with real...<br class="">* `#14093 <<a href="https://github.com/scipy/scipy/issues/14093" class="">https://github.com/scipy/scipy/issues/14093</a>>`__: DOC: Inconsistency in the definition of default values in the...<br class="">* `#14158 <<a href="https://github.com/scipy/scipy/issues/14158" class="">https://github.com/scipy/scipy/issues/14158</a>>`__: TST, BUG: test_rbfinterp.py -- test_interpolation_misfit_1d fails...<br class="">* `#14170 <<a href="https://github.com/scipy/scipy/issues/14170" class="">https://github.com/scipy/scipy/issues/14170</a>>`__: TST: signal submodule test_filtfilt_gust failing on 32-bit amd64...<br class="">* `#14194 <<a href="https://github.com/scipy/scipy/issues/14194" class="">https://github.com/scipy/scipy/issues/14194</a>>`__: MAINT: download-wheels.py missing import<br class="">* `#14199 <<a href="https://github.com/scipy/scipy/issues/14199" class="">https://github.com/scipy/scipy/issues/14199</a>>`__: Generated sources for biasedurn extension are broken in 1.7.0rc1<br class=""><br class=""><br class="">**************************<br class="">Pull requests for 1.7.0<br class="">**************************<br class=""><br class="">* `#4824 <<a href="https://github.com/scipy/scipy/pull/4824" class="">https://github.com/scipy/scipy/pull/4824</a>>`__: Permutation Ttest (new PR)<br class="">* `#4933 <<a href="https://github.com/scipy/scipy/pull/4933" class="">https://github.com/scipy/scipy/pull/4933</a>>`__: ENH: Update the Mann-Whitney-Wilcoxon test<br class="">* `#7702 <<a href="https://github.com/scipy/scipy/pull/7702" class="">https://github.com/scipy/scipy/pull/7702</a>>`__: ENH: stats: Add Skewed Cauchy Distribution<br class="">* `#8306 <<a href="https://github.com/scipy/scipy/pull/8306" class="">https://github.com/scipy/scipy/pull/8306</a>>`__: Optional Pythran support for scipy.signal.max_len_seq_inner<br class="">* `#10170 <<a href="https://github.com/scipy/scipy/pull/10170" class="">https://github.com/scipy/scipy/pull/10170</a>>`__: MAINT: stats: Implement cdf and ppf as ufuncs for the cosine...<br class="">* `#10454 <<a href="https://github.com/scipy/scipy/pull/10454" class="">https://github.com/scipy/scipy/pull/10454</a>>`__: ENH: Extend find_peaks_cwt to take numbers and iterables for...<br class="">* `#10844 <<a href="https://github.com/scipy/scipy/pull/10844" class="">https://github.com/scipy/scipy/pull/10844</a>>`__: ENH: add stats.qmc module with quasi Monte Carlo functionality<br class="">* `#11313 <<a href="https://github.com/scipy/scipy/pull/11313" class="">https://github.com/scipy/scipy/pull/11313</a>>`__: ENH: add Wright's generalized Bessel function<br class="">* `#11352 <<a href="https://github.com/scipy/scipy/pull/11352" class="">https://github.com/scipy/scipy/pull/11352</a>>`__: ENH: stats: Add crosstab function.<br class="">* `#11477 <<a href="https://github.com/scipy/scipy/pull/11477" class="">https://github.com/scipy/scipy/pull/11477</a>>`__: FIX: bounded parameter in cdfchn.f gives bad results<br class="">* `#11695 <<a href="https://github.com/scipy/scipy/pull/11695" class="">https://github.com/scipy/scipy/pull/11695</a>>`__: ENH: stats: add method of moments to \`rv_continuous.fit\`<br class="">* `#11911 <<a href="https://github.com/scipy/scipy/pull/11911" class="">https://github.com/scipy/scipy/pull/11911</a>>`__: ENH: Added bounds to boxcox and boxcox_normmax<br class="">* `#12438 <<a href="https://github.com/scipy/scipy/pull/12438" class="">https://github.com/scipy/scipy/pull/12438</a>>`__: BUG: use ellipkm1 in elliptical filter design to prevent numerical...<br class="">* `#12531 <<a href="https://github.com/scipy/scipy/pull/12531" class="">https://github.com/scipy/scipy/pull/12531</a>>`__: ENH: stats: add Page's L test<br class="">* `#12603 <<a href="https://github.com/scipy/scipy/pull/12603" class="">https://github.com/scipy/scipy/pull/12603</a>>`__: ENH: stats: Add \`binomtest\` to replace \`binom_test\`.<br class="">* `#12653 <<a href="https://github.com/scipy/scipy/pull/12653" class="">https://github.com/scipy/scipy/pull/12653</a>>`__: ENH: stats: add Somers' D test<br class="">* `#12676 <<a href="https://github.com/scipy/scipy/pull/12676" class="">https://github.com/scipy/scipy/pull/12676</a>>`__: BUG: update median averaging in signal.csd<br class="">* `#12760 <<a href="https://github.com/scipy/scipy/pull/12760" class="">https://github.com/scipy/scipy/pull/12760</a>>`__: BUG: special: erfinv(x<<1) loses precision<br class="">* `#12801 <<a href="https://github.com/scipy/scipy/pull/12801" class="">https://github.com/scipy/scipy/pull/12801</a>>`__: ENH: Add single-sided p-values to remaining spearmanr and linregress<br class="">* `#12873 <<a href="https://github.com/scipy/scipy/pull/12873" class="">https://github.com/scipy/scipy/pull/12873</a>>`__: ENH: Stats: add Alexander Govern Test<br class="">* `#13008 <<a href="https://github.com/scipy/scipy/pull/13008" class="">https://github.com/scipy/scipy/pull/13008</a>>`__: ENH: Add 'alternative' to functions using normal CDF for p-value<br class="">* `#13040 <<a href="https://github.com/scipy/scipy/pull/13040" class="">https://github.com/scipy/scipy/pull/13040</a>>`__: BUG: Allow RectSphereBivariateSpline to accept negative longitude<br class="">* `#13048 <<a href="https://github.com/scipy/scipy/pull/13048" class="">https://github.com/scipy/scipy/pull/13048</a>>`__: ENH: stats: Add a function that computes the relative risk.<br class="">* `#13067 <<a href="https://github.com/scipy/scipy/pull/13067" class="">https://github.com/scipy/scipy/pull/13067</a>>`__: ENH: Add weights parameter to stats.gmean<br class="">* `#13084 <<a href="https://github.com/scipy/scipy/pull/13084" class="">https://github.com/scipy/scipy/pull/13084</a>>`__: ENH: fast Hankel transform<br class="">* `#13104 <<a href="https://github.com/scipy/scipy/pull/13104" class="">https://github.com/scipy/scipy/pull/13104</a>>`__: MAINT: upgrade python version (drop python 3.6) for docker dev...<br class="">* `#13153 <<a href="https://github.com/scipy/scipy/pull/13153" class="">https://github.com/scipy/scipy/pull/13153</a>>`__: ENH: added association measurements Pearsons Contingency Coefficient,...<br class="">* `#13166 <<a href="https://github.com/scipy/scipy/pull/13166" class="">https://github.com/scipy/scipy/pull/13166</a>>`__: ENH: stats: Add nan_policy to zmap.<br class="">* `#13175 <<a href="https://github.com/scipy/scipy/pull/13175" class="">https://github.com/scipy/scipy/pull/13175</a>>`__: MAINT: tests for tall cost matrices in \`linear_sum_assignment\`<br class="">* `#13177 <<a href="https://github.com/scipy/scipy/pull/13177" class="">https://github.com/scipy/scipy/pull/13177</a>>`__: BUG: raise NotImplementedError in fourier_ellipsoid when ndim...<br class="">* `#13184 <<a href="https://github.com/scipy/scipy/pull/13184" class="">https://github.com/scipy/scipy/pull/13184</a>>`__: BUG: stats: Fix min and max calculation of mstats.describe with...<br class="">* `#13188 <<a href="https://github.com/scipy/scipy/pull/13188" class="">https://github.com/scipy/scipy/pull/13188</a>>`__: DOC: stats: make null and alternative hypotheses of kstest more...<br class="">* `#13193 <<a href="https://github.com/scipy/scipy/pull/13193" class="">https://github.com/scipy/scipy/pull/13193</a>>`__: MAINT: stats: chisquare check sum of observed/expected frequencies<br class="">* `#13197 <<a href="https://github.com/scipy/scipy/pull/13197" class="">https://github.com/scipy/scipy/pull/13197</a>>`__: ENH/MAINT: HiGHS upstream enhancements and bug fixes<br class="">* `#13198 <<a href="https://github.com/scipy/scipy/pull/13198" class="">https://github.com/scipy/scipy/pull/13198</a>>`__: ENH: allow inference of output_shape from out array in affine_transform<br class="">* `#13204 <<a href="https://github.com/scipy/scipy/pull/13204" class="">https://github.com/scipy/scipy/pull/13204</a>>`__: ENH: stats: add Zipfian (different from Zipf/zeta) distribution<br class="">* `#13208 <<a href="https://github.com/scipy/scipy/pull/13208" class="">https://github.com/scipy/scipy/pull/13208</a>>`__: REL: set version to 1.7.0.dev0<br class="">* `#13216 <<a href="https://github.com/scipy/scipy/pull/13216" class="">https://github.com/scipy/scipy/pull/13216</a>>`__: TST: stats: break up and mark slow tests<br class="">* `#13224 <<a href="https://github.com/scipy/scipy/pull/13224" class="">https://github.com/scipy/scipy/pull/13224</a>>`__: Update docs for the weighted τ<br class="">* `#13230 <<a href="https://github.com/scipy/scipy/pull/13230" class="">https://github.com/scipy/scipy/pull/13230</a>>`__: ENH: linalg: Add LAPACK wrapper for tgexc.<br class="">* `#13232 <<a href="https://github.com/scipy/scipy/pull/13232" class="">https://github.com/scipy/scipy/pull/13232</a>>`__: MAINT: stats: raise error when input to kruskal has >1 dim<br class="">* `#13233 <<a href="https://github.com/scipy/scipy/pull/13233" class="">https://github.com/scipy/scipy/pull/13233</a>>`__: DOC: stats: fix MGF of arcsine and entropy of t in tutorial<br class="">* `#13236 <<a href="https://github.com/scipy/scipy/pull/13236" class="">https://github.com/scipy/scipy/pull/13236</a>>`__: MAINT: reorganize shared linear assignment tests<br class="">* `#13237 <<a href="https://github.com/scipy/scipy/pull/13237" class="">https://github.com/scipy/scipy/pull/13237</a>>`__: BENCH: Refactor stats.Distribution to easily add new distributions<br class="">* `#13238 <<a href="https://github.com/scipy/scipy/pull/13238" class="">https://github.com/scipy/scipy/pull/13238</a>>`__: BUG: stats: fix wrong shape output of burr and fisk distributions<br class="">* `#13240 <<a href="https://github.com/scipy/scipy/pull/13240" class="">https://github.com/scipy/scipy/pull/13240</a>>`__: MAINT: add tests of trivial cost matrices for linear sum assignment<br class="">* `#13252 <<a href="https://github.com/scipy/scipy/pull/13252" class="">https://github.com/scipy/scipy/pull/13252</a>>`__: DOC: optimize: add \`optimize.linear_sum_assignment\` tutorial.<br class="">* `#13254 <<a href="https://github.com/scipy/scipy/pull/13254" class="">https://github.com/scipy/scipy/pull/13254</a>>`__: BUG: Fix precision issues for constant input in skew and kurtosis<br class="">* `#13262 <<a href="https://github.com/scipy/scipy/pull/13262" class="">https://github.com/scipy/scipy/pull/13262</a>>`__: BUG: scipy.medfilt and .medfilt2d fixes<br class="">* `#13263 <<a href="https://github.com/scipy/scipy/pull/13263" class="">https://github.com/scipy/scipy/pull/13263</a>>`__: ENH: add Cramer-von Mises test for two samples<br class="">* `#13264 <<a href="https://github.com/scipy/scipy/pull/13264" class="">https://github.com/scipy/scipy/pull/13264</a>>`__: fix a minor typo in \`stats.anderson\` doc<br class="">* `#13268 <<a href="https://github.com/scipy/scipy/pull/13268" class="">https://github.com/scipy/scipy/pull/13268</a>>`__: ENH: stats: Add implementation of _entropy for the t distr.<br class="">* `#13273 <<a href="https://github.com/scipy/scipy/pull/13273" class="">https://github.com/scipy/scipy/pull/13273</a>>`__: DOC: stats: fix typo in Yeo-Johnson LL function documentation<br class="">* `#13275 <<a href="https://github.com/scipy/scipy/pull/13275" class="">https://github.com/scipy/scipy/pull/13275</a>>`__: MAINT: stats: Correct a comment in the _fitstart method of gamma.<br class="">* `#13283 <<a href="https://github.com/scipy/scipy/pull/13283" class="">https://github.com/scipy/scipy/pull/13283</a>>`__: BUG: stats: fix the cdf method of rv_discrete class<br class="">* `#13286 <<a href="https://github.com/scipy/scipy/pull/13286" class="">https://github.com/scipy/scipy/pull/13286</a>>`__: DOC: stats: clairify rv_continuous/discrete.stats example<br class="">* `#13288 <<a href="https://github.com/scipy/scipy/pull/13288" class="">https://github.com/scipy/scipy/pull/13288</a>>`__: DOC: stats: discrete distribution shape parameter restrictions<br class="">* `#13289 <<a href="https://github.com/scipy/scipy/pull/13289" class="">https://github.com/scipy/scipy/pull/13289</a>>`__: MAINT: fix a build warning in sigtoolsmodule.c<br class="">* `#13290 <<a href="https://github.com/scipy/scipy/pull/13290" class="">https://github.com/scipy/scipy/pull/13290</a>>`__: DOC: Expand the discussion of the nan_policy API.<br class="">* `#13291 <<a href="https://github.com/scipy/scipy/pull/13291" class="">https://github.com/scipy/scipy/pull/13291</a>>`__: MAINT: signal, stats: Use keepdims where appropriate.<br class="">* `#13292 <<a href="https://github.com/scipy/scipy/pull/13292" class="">https://github.com/scipy/scipy/pull/13292</a>>`__: DOC: stats: note another common parameterization of nbinom<br class="">* `#13293 <<a href="https://github.com/scipy/scipy/pull/13293" class="">https://github.com/scipy/scipy/pull/13293</a>>`__: DOC: Change broken link for default values to archived link<br class="">* `#13295 <<a href="https://github.com/scipy/scipy/pull/13295" class="">https://github.com/scipy/scipy/pull/13295</a>>`__: BUG: stats: fix the support method to return correct bounds<br class="">* `#13296 <<a href="https://github.com/scipy/scipy/pull/13296" class="">https://github.com/scipy/scipy/pull/13296</a>>`__: DOC: stats: Fix latex markup in the kstwo docstring.<br class="">* `#13297 <<a href="https://github.com/scipy/scipy/pull/13297" class="">https://github.com/scipy/scipy/pull/13297</a>>`__: TST: mark kde.logpdf overflow test as xslow<br class="">* `#13298 <<a href="https://github.com/scipy/scipy/pull/13298" class="">https://github.com/scipy/scipy/pull/13298</a>>`__: Generalized Hyperbolic Distribution<br class="">* `#13301 <<a href="https://github.com/scipy/scipy/pull/13301" class="">https://github.com/scipy/scipy/pull/13301</a>>`__: DOC: cluster: Add cluster number note to the docstring of cluster.vq.kmeans<br class="">* `#13302 <<a href="https://github.com/scipy/scipy/pull/13302" class="">https://github.com/scipy/scipy/pull/13302</a>>`__: BUG: Fix ndimage.morphology.distance_transform\_\* argument handling<br class="">* `#13303 <<a href="https://github.com/scipy/scipy/pull/13303" class="">https://github.com/scipy/scipy/pull/13303</a>>`__: CI: prevent Codecov giving false CI failures and wrong PR annotations<br class="">* `#13313 <<a href="https://github.com/scipy/scipy/pull/13313" class="">https://github.com/scipy/scipy/pull/13313</a>>`__: ENH: static typing for qhull<br class="">* `#13316 <<a href="https://github.com/scipy/scipy/pull/13316" class="">https://github.com/scipy/scipy/pull/13316</a>>`__: Pythran implementation of scipy.signal._spectral<br class="">* `#13317 <<a href="https://github.com/scipy/scipy/pull/13317" class="">https://github.com/scipy/scipy/pull/13317</a>>`__: DOC: forward port 1.6.0 relnotes<br class="">* `#13319 <<a href="https://github.com/scipy/scipy/pull/13319" class="">https://github.com/scipy/scipy/pull/13319</a>>`__: ENH: stats: add fast numerical inversion of distribution CDF<br class="">* `#13320 <<a href="https://github.com/scipy/scipy/pull/13320" class="">https://github.com/scipy/scipy/pull/13320</a>>`__: ENH: x0 for differential_evolution<br class="">* `#13324 <<a href="https://github.com/scipy/scipy/pull/13324" class="">https://github.com/scipy/scipy/pull/13324</a>>`__: DOC correct linprog highs versionadded to 1.6<br class="">* `#13326 <<a href="https://github.com/scipy/scipy/pull/13326" class="">https://github.com/scipy/scipy/pull/13326</a>>`__: MAINT: update numpydoc to v1.1.0<br class="">* `#13327 <<a href="https://github.com/scipy/scipy/pull/13327" class="">https://github.com/scipy/scipy/pull/13327</a>>`__: DOC: interpolate: improved docstring examples of \`interpolate.interpn()\`...<br class="">* `#13328 <<a href="https://github.com/scipy/scipy/pull/13328" class="">https://github.com/scipy/scipy/pull/13328</a>>`__: ENH: Boost stats distributions<br class="">* `#13330 <<a href="https://github.com/scipy/scipy/pull/13330" class="">https://github.com/scipy/scipy/pull/13330</a>>`__: ENH: stats: add noncentral hypergeometric distributions (Fisher's...<br class="">* `#13331 <<a href="https://github.com/scipy/scipy/pull/13331" class="">https://github.com/scipy/scipy/pull/13331</a>>`__: MAINT/ENH: resolve mypy warnings/errors<br class="">* `#13332 <<a href="https://github.com/scipy/scipy/pull/13332" class="">https://github.com/scipy/scipy/pull/13332</a>>`__: DOC: interpolate: improved docstring of \`interpolate.interp2d\`...<br class="">* `#13333 <<a href="https://github.com/scipy/scipy/pull/13333" class="">https://github.com/scipy/scipy/pull/13333</a>>`__: ENH: stats: Some more _sf and _isf implementations.<br class="">* `#13334 <<a href="https://github.com/scipy/scipy/pull/13334" class="">https://github.com/scipy/scipy/pull/13334</a>>`__: MAINT: stats: Clean up a few defunct comments in _continuous_distns.py<br class="">* `#13336 <<a href="https://github.com/scipy/scipy/pull/13336" class="">https://github.com/scipy/scipy/pull/13336</a>>`__: Pythran version of scipy.optimize._group_columns<br class="">* `#13337 <<a href="https://github.com/scipy/scipy/pull/13337" class="">https://github.com/scipy/scipy/pull/13337</a>>`__: DOC|ENH: type hinting in scipy.integrate.simpson<br class="">* `#13346 <<a href="https://github.com/scipy/scipy/pull/13346" class="">https://github.com/scipy/scipy/pull/13346</a>>`__: ENH: stats: add 'ddof' parameter to the 'variation' function<br class="">* `#13355 <<a href="https://github.com/scipy/scipy/pull/13355" class="">https://github.com/scipy/scipy/pull/13355</a>>`__: ENH: stats: implement _logpdf, _sf and _isf for loggamma.<br class="">* `#13360 <<a href="https://github.com/scipy/scipy/pull/13360" class="">https://github.com/scipy/scipy/pull/13360</a>>`__: ENH|DOC: fix docstring and input validation in interpolate.RectSphereBivariateSpline<br class="">* `#13366 <<a href="https://github.com/scipy/scipy/pull/13366" class="">https://github.com/scipy/scipy/pull/13366</a>>`__: BUG: stats: Don't raise ZeroDivisionError in _unequal_var_ttest_denom<br class="">* `#13370 <<a href="https://github.com/scipy/scipy/pull/13370" class="">https://github.com/scipy/scipy/pull/13370</a>>`__: ENH: fix ARGUS distribution for small parameters in stats<br class="">* `#13371 <<a href="https://github.com/scipy/scipy/pull/13371" class="">https://github.com/scipy/scipy/pull/13371</a>>`__: ENH: stats: add \`bootstrap\` for estimating confidence interval...<br class="">* `#13373 <<a href="https://github.com/scipy/scipy/pull/13373" class="">https://github.com/scipy/scipy/pull/13373</a>>`__: BUG: io/matlab: preserve dimensions of empty >=2D arrays<br class="">* `#13374 <<a href="https://github.com/scipy/scipy/pull/13374" class="">https://github.com/scipy/scipy/pull/13374</a>>`__: ENH: stats: add skewed Cauchy distribution<br class="">* `#13379 <<a href="https://github.com/scipy/scipy/pull/13379" class="">https://github.com/scipy/scipy/pull/13379</a>>`__: BUG: sparse: fix verbosity in sparse lsqr<br class="">* `#13383 <<a href="https://github.com/scipy/scipy/pull/13383" class="">https://github.com/scipy/scipy/pull/13383</a>>`__: TST: stats: mark many dimension permutation t-test slow<br class="">* `#13384 <<a href="https://github.com/scipy/scipy/pull/13384" class="">https://github.com/scipy/scipy/pull/13384</a>>`__: MAINT: Make keywords array static<br class="">* `#13388 <<a href="https://github.com/scipy/scipy/pull/13388" class="">https://github.com/scipy/scipy/pull/13388</a>>`__: PERF: Avoid duplicate mean calculations in skew and kurtosis<br class="">* `#13389 <<a href="https://github.com/scipy/scipy/pull/13389" class="">https://github.com/scipy/scipy/pull/13389</a>>`__: DOC: Fix deprecated directive syntax<br class="">* `#13390 <<a href="https://github.com/scipy/scipy/pull/13390" class="">https://github.com/scipy/scipy/pull/13390</a>>`__: DOC: Correct line length for Parameter Section underline<br class="">* `#13393 <<a href="https://github.com/scipy/scipy/pull/13393" class="">https://github.com/scipy/scipy/pull/13393</a>>`__: MAINT: stats: allow wishart dim - 1 < df < dim<br class="">* `#13395 <<a href="https://github.com/scipy/scipy/pull/13395" class="">https://github.com/scipy/scipy/pull/13395</a>>`__: DOC: fix typo in setup.py warning message<br class="">* `#13396 <<a href="https://github.com/scipy/scipy/pull/13396" class="">https://github.com/scipy/scipy/pull/13396</a>>`__: BUG: Fix MLE for Nakagami \`nakagami_gen.fit\`<br class="">* `#13397 <<a href="https://github.com/scipy/scipy/pull/13397" class="">https://github.com/scipy/scipy/pull/13397</a>>`__: MAINT:linalg: Fix tgsen family wrapper and ordqz<br class="">* `#13406 <<a href="https://github.com/scipy/scipy/pull/13406" class="">https://github.com/scipy/scipy/pull/13406</a>>`__: TST: add error handling tests for sparse BSR ctor<br class="">* `#13413 <<a href="https://github.com/scipy/scipy/pull/13413" class="">https://github.com/scipy/scipy/pull/13413</a>>`__: DOC: ultra-quickstart guide<br class="">* `#13418 <<a href="https://github.com/scipy/scipy/pull/13418" class="">https://github.com/scipy/scipy/pull/13418</a>>`__: BUG: Fix moment returning inconsistent types and shapes<br class="">* `#13423 <<a href="https://github.com/scipy/scipy/pull/13423" class="">https://github.com/scipy/scipy/pull/13423</a>>`__: DOC: Update example for leaf_label_func/dendrogram<br class="">* `#13431 <<a href="https://github.com/scipy/scipy/pull/13431" class="">https://github.com/scipy/scipy/pull/13431</a>>`__: ENH: stats: override _rvs for nhypergeom<br class="">* `#13432 <<a href="https://github.com/scipy/scipy/pull/13432" class="">https://github.com/scipy/scipy/pull/13432</a>>`__: Add indicator in NDInterpolator docstring that N must be > 1<br class="">* `#13434 <<a href="https://github.com/scipy/scipy/pull/13434" class="">https://github.com/scipy/scipy/pull/13434</a>>`__: DOC: stats: note relationship between scaled-inv-chi2 and invgamma<br class="">* `#13436 <<a href="https://github.com/scipy/scipy/pull/13436" class="">https://github.com/scipy/scipy/pull/13436</a>>`__: ENH: interpolate: add input validation to check input x-y is...<br class="">* `#13441 <<a href="https://github.com/scipy/scipy/pull/13441" class="">https://github.com/scipy/scipy/pull/13441</a>>`__: ENH: add functionality \`barnard_exact\` test to scipy.stats.<br class="">* `#13443 <<a href="https://github.com/scipy/scipy/pull/13443" class="">https://github.com/scipy/scipy/pull/13443</a>>`__: MAINT: stats: Updates for skewcauchy<br class="">* `#13444 <<a href="https://github.com/scipy/scipy/pull/13444" class="">https://github.com/scipy/scipy/pull/13444</a>>`__: DOC: clarify range of \`a\` parameter fpr johnsonsu/johnsonsb<br class="">* `#13445 <<a href="https://github.com/scipy/scipy/pull/13445" class="">https://github.com/scipy/scipy/pull/13445</a>>`__: DOC: fix runtests guidelines.<br class="">* `#13446 <<a href="https://github.com/scipy/scipy/pull/13446" class="">https://github.com/scipy/scipy/pull/13446</a>>`__: MAINT: stats: Add _fitstart method to wrapcauchy.<br class="">* `#13447 <<a href="https://github.com/scipy/scipy/pull/13447" class="">https://github.com/scipy/scipy/pull/13447</a>>`__: DEV: Update development Docker image<br class="">* `#13448 <<a href="https://github.com/scipy/scipy/pull/13448" class="">https://github.com/scipy/scipy/pull/13448</a>>`__: ENH: Add annotations for \`scipy.spatial.distance\`<br class="">* `#13451 <<a href="https://github.com/scipy/scipy/pull/13451" class="">https://github.com/scipy/scipy/pull/13451</a>>`__: DOC: minor formatting.<br class="">* `#13458 <<a href="https://github.com/scipy/scipy/pull/13458" class="">https://github.com/scipy/scipy/pull/13458</a>>`__: DOC: indent see also.<br class="">* `#13460 <<a href="https://github.com/scipy/scipy/pull/13460" class="">https://github.com/scipy/scipy/pull/13460</a>>`__: DOC: stats: Fix link to Cramer-von Mises wikipedia article.<br class="">* `#13461 <<a href="https://github.com/scipy/scipy/pull/13461" class="">https://github.com/scipy/scipy/pull/13461</a>>`__: DOC: reorganize scipy.stats overview docs page<br class="">* `#13463 <<a href="https://github.com/scipy/scipy/pull/13463" class="">https://github.com/scipy/scipy/pull/13463</a>>`__: DOC: misc formatting fixes<br class="">* `#13466 <<a href="https://github.com/scipy/scipy/pull/13466" class="">https://github.com/scipy/scipy/pull/13466</a>>`__: DOC: Typo in see also s/SmoothUni/SmoothBi/g<br class="">* `#13467 <<a href="https://github.com/scipy/scipy/pull/13467" class="">https://github.com/scipy/scipy/pull/13467</a>>`__: DOC: optimize: add description about \`tol\` argument for \`minimize\`.<br class="">* `#13469 <<a href="https://github.com/scipy/scipy/pull/13469" class="">https://github.com/scipy/scipy/pull/13469</a>>`__: MAINT: Refactor optimization methods to use scipy.stats.qmc<br class="">* `#13477 <<a href="https://github.com/scipy/scipy/pull/13477" class="">https://github.com/scipy/scipy/pull/13477</a>>`__: CI: pin numpy to 1.19.5 for the three macOS CI jobs<br class="">* `#13478 <<a href="https://github.com/scipy/scipy/pull/13478" class="">https://github.com/scipy/scipy/pull/13478</a>>`__: DOC: fix typos where double :: for Sphinx directives were missing<br class="">* `#13481 <<a href="https://github.com/scipy/scipy/pull/13481" class="">https://github.com/scipy/scipy/pull/13481</a>>`__: CI: pin numpy to 1.19.5 in the 4 parallel Windows builds on Azure<br class="">* `#13482 <<a href="https://github.com/scipy/scipy/pull/13482" class="">https://github.com/scipy/scipy/pull/13482</a>>`__: CI: use numpy 1.20.0 again in macOS CI<br class="">* `#13483 <<a href="https://github.com/scipy/scipy/pull/13483" class="">https://github.com/scipy/scipy/pull/13483</a>>`__: DOC: Multiple documentation syntax fixes.<br class="">* `#13484 <<a href="https://github.com/scipy/scipy/pull/13484" class="">https://github.com/scipy/scipy/pull/13484</a>>`__: Move some pythran config from CI to setup<br class="">* `#13487 <<a href="https://github.com/scipy/scipy/pull/13487" class="">https://github.com/scipy/scipy/pull/13487</a>>`__: DOC: add a tutorial about scipy.stats.qmc<br class="">* `#13492 <<a href="https://github.com/scipy/scipy/pull/13492" class="">https://github.com/scipy/scipy/pull/13492</a>>`__: ENH: GH actions should not run on forks<br class="">* `#13493 <<a href="https://github.com/scipy/scipy/pull/13493" class="">https://github.com/scipy/scipy/pull/13493</a>>`__: DEV: Enable gitpod for SciPy<br class="">* `#13495 <<a href="https://github.com/scipy/scipy/pull/13495" class="">https://github.com/scipy/scipy/pull/13495</a>>`__: DOC One-word typo in the documentation of optimize.linprog_simplex<br class="">* `#13499 <<a href="https://github.com/scipy/scipy/pull/13499" class="">https://github.com/scipy/scipy/pull/13499</a>>`__: DOC: describe LSAP implementation<br class="">* `#13502 <<a href="https://github.com/scipy/scipy/pull/13502" class="">https://github.com/scipy/scipy/pull/13502</a>>`__: BUG: Bounds created with lists weren't working for Powell<br class="">* `#13507 <<a href="https://github.com/scipy/scipy/pull/13507" class="">https://github.com/scipy/scipy/pull/13507</a>>`__: MAINT, TST: stats: centralize invalid parameters list for all...<br class="">* `#13510 <<a href="https://github.com/scipy/scipy/pull/13510" class="">https://github.com/scipy/scipy/pull/13510</a>>`__: DOC: stats: fix small doc errors in 'multivariate_hypergeom'<br class="">* `#13513 <<a href="https://github.com/scipy/scipy/pull/13513" class="">https://github.com/scipy/scipy/pull/13513</a>>`__: DOC: Added math notation in examples in ltisys.py<br class="">* `#13514 <<a href="https://github.com/scipy/scipy/pull/13514" class="">https://github.com/scipy/scipy/pull/13514</a>>`__: ENH: simplify low_0_bit function for Sobol<br class="">* `#13515 <<a href="https://github.com/scipy/scipy/pull/13515" class="">https://github.com/scipy/scipy/pull/13515</a>>`__: ENH: optimize: add bound constraint support for nelder-mead solver<br class="">* `#13516 <<a href="https://github.com/scipy/scipy/pull/13516" class="">https://github.com/scipy/scipy/pull/13516</a>>`__: DOC: reduce LaTeX usage for johnsonb docstring<br class="">* `#13519 <<a href="https://github.com/scipy/scipy/pull/13519" class="">https://github.com/scipy/scipy/pull/13519</a>>`__: BLD: remove build_sphinx support from setup.py<br class="">* `#13527 <<a href="https://github.com/scipy/scipy/pull/13527" class="">https://github.com/scipy/scipy/pull/13527</a>>`__: TST: stats: xfail ttest_ind_randperm_alternative2 on 32 bit<br class="">* `#13530 <<a href="https://github.com/scipy/scipy/pull/13530" class="">https://github.com/scipy/scipy/pull/13530</a>>`__: DOC: correct comparisons between median filter functions<br class="">* `#13532 <<a href="https://github.com/scipy/scipy/pull/13532" class="">https://github.com/scipy/scipy/pull/13532</a>>`__: ENH: release the GIL inside medfilt2d<br class="">* `#13538 <<a href="https://github.com/scipy/scipy/pull/13538" class="">https://github.com/scipy/scipy/pull/13538</a>>`__: DOC: optimize: fix minor doc error in 'fmin_powell' (#13511)<br class="">* `#13546 <<a href="https://github.com/scipy/scipy/pull/13546" class="">https://github.com/scipy/scipy/pull/13546</a>>`__: DOC: fix list of "mode" options for ndimage<br class="">* `#13549 <<a href="https://github.com/scipy/scipy/pull/13549" class="">https://github.com/scipy/scipy/pull/13549</a>>`__: ENH: stats: add 'alternative' keyword to some normality tests.<br class="">* `#13551 <<a href="https://github.com/scipy/scipy/pull/13551" class="">https://github.com/scipy/scipy/pull/13551</a>>`__: MAINT: add git to docker env<br class="">* `#13552 <<a href="https://github.com/scipy/scipy/pull/13552" class="">https://github.com/scipy/scipy/pull/13552</a>>`__: MAINT: stats: remove float_power shim<br class="">* `#13553 <<a href="https://github.com/scipy/scipy/pull/13553" class="">https://github.com/scipy/scipy/pull/13553</a>>`__: DOC: use support rather than a/b in stats tutorial<br class="">* `#13560 <<a href="https://github.com/scipy/scipy/pull/13560" class="">https://github.com/scipy/scipy/pull/13560</a>>`__: MAINT: optimize: improve linprog error message for sparse input...<br class="">* `#13562 <<a href="https://github.com/scipy/scipy/pull/13562" class="">https://github.com/scipy/scipy/pull/13562</a>>`__: MAINT: optimize: using np.isclose instead of _within_tolerance.<br class="">* `#13566 <<a href="https://github.com/scipy/scipy/pull/13566" class="">https://github.com/scipy/scipy/pull/13566</a>>`__: ENH: Speed up hdquantiles_sd()<br class="">* `#13569 <<a href="https://github.com/scipy/scipy/pull/13569" class="">https://github.com/scipy/scipy/pull/13569</a>>`__: BENCH: optimize: benchmark only HiGHS methods; add bigger linprog...<br class="">* `#13574 <<a href="https://github.com/scipy/scipy/pull/13574" class="">https://github.com/scipy/scipy/pull/13574</a>>`__: DOC: In description of cluster.hierarchy.dendrogram 'level' parameter,...<br class="">* `#13576 <<a href="https://github.com/scipy/scipy/pull/13576" class="">https://github.com/scipy/scipy/pull/13576</a>>`__: ENH: improve discrepancy performance<br class="">* `#13579 <<a href="https://github.com/scipy/scipy/pull/13579" class="">https://github.com/scipy/scipy/pull/13579</a>>`__: TST: Add pybind11 to tox environments<br class="">* `#13583 <<a href="https://github.com/scipy/scipy/pull/13583" class="">https://github.com/scipy/scipy/pull/13583</a>>`__: BUG: Fix Dockerfile apt-get installs<br class="">* `#13588 <<a href="https://github.com/scipy/scipy/pull/13588" class="">https://github.com/scipy/scipy/pull/13588</a>>`__: MAINT: forward port 1.6.1 relnotes.<br class="">* `#13593 <<a href="https://github.com/scipy/scipy/pull/13593" class="">https://github.com/scipy/scipy/pull/13593</a>>`__: BUG: stats: preserve sample dtype for bin edges<br class="">* `#13595 <<a href="https://github.com/scipy/scipy/pull/13595" class="">https://github.com/scipy/scipy/pull/13595</a>>`__: ENH: interpolate: add RBFInterpolator<br class="">* `#13596 <<a href="https://github.com/scipy/scipy/pull/13596" class="">https://github.com/scipy/scipy/pull/13596</a>>`__: DOC: Fix indentation in new_stats_distribution.rst.inc<br class="">* `#13601 <<a href="https://github.com/scipy/scipy/pull/13601" class="">https://github.com/scipy/scipy/pull/13601</a>>`__: Add dpss for get_window function<br class="">* `#13604 <<a href="https://github.com/scipy/scipy/pull/13604" class="">https://github.com/scipy/scipy/pull/13604</a>>`__: DOC: Correct dual annealing visiting param range.<br class="">* `#13605 <<a href="https://github.com/scipy/scipy/pull/13605" class="">https://github.com/scipy/scipy/pull/13605</a>>`__: Add Codecov badge to README<br class="">* `#13607 <<a href="https://github.com/scipy/scipy/pull/13607" class="">https://github.com/scipy/scipy/pull/13607</a>>`__: MAINT: stats: fix crystalball entropy<br class="">* `#13611 <<a href="https://github.com/scipy/scipy/pull/13611" class="">https://github.com/scipy/scipy/pull/13611</a>>`__: Better argument preparation for distributions in stats package.<br class="">* `#13612 <<a href="https://github.com/scipy/scipy/pull/13612" class="">https://github.com/scipy/scipy/pull/13612</a>>`__: Add docker run command for Windows cmd<br class="">* `#13613 <<a href="https://github.com/scipy/scipy/pull/13613" class="">https://github.com/scipy/scipy/pull/13613</a>>`__: MAINT, CI: mypy: fix typing errors + add mypy to CI<br class="">* `#13616 <<a href="https://github.com/scipy/scipy/pull/13616" class="">https://github.com/scipy/scipy/pull/13616</a>>`__: FIX: Return correct output for invgauss.cdf when mu is very small<br class="">* `#13617 <<a href="https://github.com/scipy/scipy/pull/13617" class="">https://github.com/scipy/scipy/pull/13617</a>>`__: MAINT: accept numbers and iterables for width in find_peaks_cwt<br class="">* `#13620 <<a href="https://github.com/scipy/scipy/pull/13620" class="">https://github.com/scipy/scipy/pull/13620</a>>`__: CI: disable the mypy CI job (partial revert of gh-13613)<br class="">* `#13621 <<a href="https://github.com/scipy/scipy/pull/13621" class="">https://github.com/scipy/scipy/pull/13621</a>>`__: DOC: signal: use array_like for input types<br class="">* `#13622 <<a href="https://github.com/scipy/scipy/pull/13622" class="">https://github.com/scipy/scipy/pull/13622</a>>`__: MAINT: clean up some unused files, make \`mypy scipy\` pass<br class="">* `#13623 <<a href="https://github.com/scipy/scipy/pull/13623" class="">https://github.com/scipy/scipy/pull/13623</a>>`__: CI: enable Mypy CI job again<br class="">* `#13624 <<a href="https://github.com/scipy/scipy/pull/13624" class="">https://github.com/scipy/scipy/pull/13624</a>>`__: TST: test more values for \`visiting_param\` input to \`dual_annealing\`<br class="">* `#13625 <<a href="https://github.com/scipy/scipy/pull/13625" class="">https://github.com/scipy/scipy/pull/13625</a>>`__: Rename integrate.simps to integrate.simpsons in documentation...<br class="">* `#13631 <<a href="https://github.com/scipy/scipy/pull/13631" class="">https://github.com/scipy/scipy/pull/13631</a>>`__: ENH: add a \`stats.differential_entropy\` function<br class="">* `#13633 <<a href="https://github.com/scipy/scipy/pull/13633" class="">https://github.com/scipy/scipy/pull/13633</a>>`__: BUG: stats.binned_statistic_2d user function expecting arrays<br class="">* `#13641 <<a href="https://github.com/scipy/scipy/pull/13641" class="">https://github.com/scipy/scipy/pull/13641</a>>`__: ENH: Added degrees parameter to rotvec<br class="">* `#13645 <<a href="https://github.com/scipy/scipy/pull/13645" class="">https://github.com/scipy/scipy/pull/13645</a>>`__: MAINT: mypy: don't install numpy-stubs<br class="">* `#13649 <<a href="https://github.com/scipy/scipy/pull/13649" class="">https://github.com/scipy/scipy/pull/13649</a>>`__: BUG: sparse: csc_matrix.argmax() integer overflow<br class="">* `#13650 <<a href="https://github.com/scipy/scipy/pull/13650" class="">https://github.com/scipy/scipy/pull/13650</a>>`__: ENH: stats: add 'alternative' parameter to ansari<br class="">* `#13652 <<a href="https://github.com/scipy/scipy/pull/13652" class="">https://github.com/scipy/scipy/pull/13652</a>>`__: DOC: fix eigvalsh documentation (#13651)<br class="">* `#13654 <<a href="https://github.com/scipy/scipy/pull/13654" class="">https://github.com/scipy/scipy/pull/13654</a>>`__: BUG: Fix LatinHypercubes<br class="">* `#13656 <<a href="https://github.com/scipy/scipy/pull/13656" class="">https://github.com/scipy/scipy/pull/13656</a>>`__: DOC: Fix PCHIP references<br class="">* `#13657 <<a href="https://github.com/scipy/scipy/pull/13657" class="">https://github.com/scipy/scipy/pull/13657</a>>`__: TST: remove IPython warning in debug session<br class="">* `#13658 <<a href="https://github.com/scipy/scipy/pull/13658" class="">https://github.com/scipy/scipy/pull/13658</a>>`__: Remove spurious quotes in docstring<br class="">* `#13661 <<a href="https://github.com/scipy/scipy/pull/13661" class="">https://github.com/scipy/scipy/pull/13661</a>>`__: ENH: stats: improve efficiency of / fix bug in exact permutation...<br class="">* `#13667 <<a href="https://github.com/scipy/scipy/pull/13667" class="">https://github.com/scipy/scipy/pull/13667</a>>`__: MAINT: Make latest Docker image default<br class="">* `#13668 <<a href="https://github.com/scipy/scipy/pull/13668" class="">https://github.com/scipy/scipy/pull/13668</a>>`__: MAINT: add .theia/ to .gitignore<br class="">* `#13669 <<a href="https://github.com/scipy/scipy/pull/13669" class="">https://github.com/scipy/scipy/pull/13669</a>>`__: BLD: change SCIPY_USE_PYTHRAN default to \`1\`<br class="">* `#13676 <<a href="https://github.com/scipy/scipy/pull/13676" class="">https://github.com/scipy/scipy/pull/13676</a>>`__: ENH Small improvements for LSQR with damp<br class="">* `#13678 <<a href="https://github.com/scipy/scipy/pull/13678" class="">https://github.com/scipy/scipy/pull/13678</a>>`__: MAINT: add Pythran-generated files to .gitignore<br class="">* `#13679 <<a href="https://github.com/scipy/scipy/pull/13679" class="">https://github.com/scipy/scipy/pull/13679</a>>`__: MAINT: move the \`conda develop .\` in the Gitpod config<br class="">* `#13680 <<a href="https://github.com/scipy/scipy/pull/13680" class="">https://github.com/scipy/scipy/pull/13680</a>>`__: DOC: Add cKDTree note comparing it with KDTree<br class="">* `#13681 <<a href="https://github.com/scipy/scipy/pull/13681" class="">https://github.com/scipy/scipy/pull/13681</a>>`__: DOC: build doc updates on Pythran, compiled code, and cleanups<br class="">* `#13683 <<a href="https://github.com/scipy/scipy/pull/13683" class="">https://github.com/scipy/scipy/pull/13683</a>>`__: BUG: mmwrite correctly serializes non skew-symmetric arrays<br class="">* `#13684 <<a href="https://github.com/scipy/scipy/pull/13684" class="">https://github.com/scipy/scipy/pull/13684</a>>`__: FIX: fix numerical overflow in gamma.isf method<br class="">* `#13685 <<a href="https://github.com/scipy/scipy/pull/13685" class="">https://github.com/scipy/scipy/pull/13685</a>>`__: BUG: fix cosine distance range to 0-2<br class="">* `#13694 <<a href="https://github.com/scipy/scipy/pull/13694" class="">https://github.com/scipy/scipy/pull/13694</a>>`__: MAINT: fix warning emitted when NumPy version is incorrect<br class="">* `#13696 <<a href="https://github.com/scipy/scipy/pull/13696" class="">https://github.com/scipy/scipy/pull/13696</a>>`__: ENH: support trimming in ttest_ind<br class="">* `#13698 <<a href="https://github.com/scipy/scipy/pull/13698" class="">https://github.com/scipy/scipy/pull/13698</a>>`__: BUG: stats: Fix spurious warnings generated by arcsine.pdf<br class="">* `#13701 <<a href="https://github.com/scipy/scipy/pull/13701" class="">https://github.com/scipy/scipy/pull/13701</a>>`__: DEV: scipy.interpolate b-splines (periodic case)<br class="">* `#13702 <<a href="https://github.com/scipy/scipy/pull/13702" class="">https://github.com/scipy/scipy/pull/13702</a>>`__: DEP: Clean up spent deprecations in spatial.distance<br class="">* `#13703 <<a href="https://github.com/scipy/scipy/pull/13703" class="">https://github.com/scipy/scipy/pull/13703</a>>`__: MAINT: fix issues found by static code analysis<br class="">* `#13706 <<a href="https://github.com/scipy/scipy/pull/13706" class="">https://github.com/scipy/scipy/pull/13706</a>>`__: ENH: stats: Implement sf and isf for the laplace distribution.<br class="">* `#13711 <<a href="https://github.com/scipy/scipy/pull/13711" class="">https://github.com/scipy/scipy/pull/13711</a>>`__: MAINT: stats: fix broadcasting for scipy.stats.entropy<br class="">* `#13712 <<a href="https://github.com/scipy/scipy/pull/13712" class="">https://github.com/scipy/scipy/pull/13712</a>>`__: BUG: stats: Override _fitstart for the invweibull distribution.<br class="">* `#13713 <<a href="https://github.com/scipy/scipy/pull/13713" class="">https://github.com/scipy/scipy/pull/13713</a>>`__: DOC: update toolchain.rst to reflect windows universal C runtime<br class="">* `#13714 <<a href="https://github.com/scipy/scipy/pull/13714" class="">https://github.com/scipy/scipy/pull/13714</a>>`__: MAINT: stats: Remove an unused list from test_continuous_basic.py.<br class="">* `#13715 <<a href="https://github.com/scipy/scipy/pull/13715" class="">https://github.com/scipy/scipy/pull/13715</a>>`__: MAINT: stats: No need to suppress frechet deprecation warnings.<br class="">* `#13716 <<a href="https://github.com/scipy/scipy/pull/13716" class="">https://github.com/scipy/scipy/pull/13716</a>>`__: MAINT: use super() as described by PEP 3135<br class="">* `#13718 <<a href="https://github.com/scipy/scipy/pull/13718" class="">https://github.com/scipy/scipy/pull/13718</a>>`__: MAINT: new-style class, removing inheritance to object<br class="">* `#13721 <<a href="https://github.com/scipy/scipy/pull/13721" class="">https://github.com/scipy/scipy/pull/13721</a>>`__: MAINT: add a type-ignore for mpmath (#13721)<br class="">* `#13723 <<a href="https://github.com/scipy/scipy/pull/13723" class="">https://github.com/scipy/scipy/pull/13723</a>>`__: MAINT: mypy: ignore mpmath imports in mypy.ini<br class="">* `#13724 <<a href="https://github.com/scipy/scipy/pull/13724" class="">https://github.com/scipy/scipy/pull/13724</a>>`__: DOC: pydata sphinx theme<br class="">* `#13725 <<a href="https://github.com/scipy/scipy/pull/13725" class="">https://github.com/scipy/scipy/pull/13725</a>>`__: BENCH: add benchmark for Kendalltau<br class="">* `#13727 <<a href="https://github.com/scipy/scipy/pull/13727" class="">https://github.com/scipy/scipy/pull/13727</a>>`__: CI: simplify Pythran configuration setup for Azure<br class="">* `#13731 <<a href="https://github.com/scipy/scipy/pull/13731" class="">https://github.com/scipy/scipy/pull/13731</a>>`__: MAINT: stats: Some flake8-driven clean up.<br class="">* `#13732 <<a href="https://github.com/scipy/scipy/pull/13732" class="">https://github.com/scipy/scipy/pull/13732</a>>`__: ENH: stats: Studentized Range Distribution<br class="">* `#13735 <<a href="https://github.com/scipy/scipy/pull/13735" class="">https://github.com/scipy/scipy/pull/13735</a>>`__: DOC: correct Voronoi docstring<br class="">* `#13738 <<a href="https://github.com/scipy/scipy/pull/13738" class="">https://github.com/scipy/scipy/pull/13738</a>>`__: DOC: add example to wright_bessel<br class="">* `#13739 <<a href="https://github.com/scipy/scipy/pull/13739" class="">https://github.com/scipy/scipy/pull/13739</a>>`__: ENH: stats: Implement _sf and _isf for the chi distribution.<br class="">* `#13741 <<a href="https://github.com/scipy/scipy/pull/13741" class="">https://github.com/scipy/scipy/pull/13741</a>>`__: MAINT: prevent overwriting of x in minimize<br class="">* `#13747 <<a href="https://github.com/scipy/scipy/pull/13747" class="">https://github.com/scipy/scipy/pull/13747</a>>`__: DOC: Add note for interp1d for non-unique x-values<br class="">* `#13749 <<a href="https://github.com/scipy/scipy/pull/13749" class="">https://github.com/scipy/scipy/pull/13749</a>>`__: MAINT: forward port 1.6.2 relnotes<br class="">* `#13759 <<a href="https://github.com/scipy/scipy/pull/13759" class="">https://github.com/scipy/scipy/pull/13759</a>>`__: MAINT: simpson small performance speedups<br class="">* `#13765 <<a href="https://github.com/scipy/scipy/pull/13765" class="">https://github.com/scipy/scipy/pull/13765</a>>`__: FIX: npymath missing causing npy_log1p to be unknown<br class="">* `#13768 <<a href="https://github.com/scipy/scipy/pull/13768" class="">https://github.com/scipy/scipy/pull/13768</a>>`__: BENCH: Add missing pythran dependency<br class="">* `#13770 <<a href="https://github.com/scipy/scipy/pull/13770" class="">https://github.com/scipy/scipy/pull/13770</a>>`__: ENH: stats.contingency: Add the sparse option to crosstab.<br class="">* `#13774 <<a href="https://github.com/scipy/scipy/pull/13774" class="">https://github.com/scipy/scipy/pull/13774</a>>`__: DEP: Deprecate squeezing input vectors in spatial.distance<br class="">* `#13775 <<a href="https://github.com/scipy/scipy/pull/13775" class="">https://github.com/scipy/scipy/pull/13775</a>>`__: Enable trust region methods to use a finite difference Hessian...<br class="">* `#13777 <<a href="https://github.com/scipy/scipy/pull/13777" class="">https://github.com/scipy/scipy/pull/13777</a>>`__: DOC: Fix Ubuntu/Debian installation instructions<br class="">* `#13778 <<a href="https://github.com/scipy/scipy/pull/13778" class="">https://github.com/scipy/scipy/pull/13778</a>>`__: DOC: remove references to RandomState<br class="">* `#13782 <<a href="https://github.com/scipy/scipy/pull/13782" class="">https://github.com/scipy/scipy/pull/13782</a>>`__: MAINT: LBFGSB err msg on MAXLS changed closes #11718<br class="">* `#13785 <<a href="https://github.com/scipy/scipy/pull/13785" class="">https://github.com/scipy/scipy/pull/13785</a>>`__: BENCH: Add benchmark for cdist/pdist with weights<br class="">* `#13786 <<a href="https://github.com/scipy/scipy/pull/13786" class="">https://github.com/scipy/scipy/pull/13786</a>>`__: MAINT: Prepare cdist/pdist for C++ rework<br class="">* `#13787 <<a href="https://github.com/scipy/scipy/pull/13787" class="">https://github.com/scipy/scipy/pull/13787</a>>`__: MAINT: stats: move entropy and differential_entropy functions...<br class="">* `#13790 <<a href="https://github.com/scipy/scipy/pull/13790" class="">https://github.com/scipy/scipy/pull/13790</a>>`__: DOC: Add some dependencies for Dockerfile doc of scipy development.<br class="">* `#13792 <<a href="https://github.com/scipy/scipy/pull/13792" class="">https://github.com/scipy/scipy/pull/13792</a>>`__: BUG: stats: Fix broadcasting in wrapcauchy.cdf<br class="">* `#13795 <<a href="https://github.com/scipy/scipy/pull/13795" class="">https://github.com/scipy/scipy/pull/13795</a>>`__: MAINT: stats: add hypotests to __all__ in init.py, not stats.py<br class="">* `#13797 <<a href="https://github.com/scipy/scipy/pull/13797" class="">https://github.com/scipy/scipy/pull/13797</a>>`__: MAINT: stats: probplot: don't plot least-squares fit line unless...<br class="">* `#13798 <<a href="https://github.com/scipy/scipy/pull/13798" class="">https://github.com/scipy/scipy/pull/13798</a>>`__: MAINT: fix incorrect code comment in \`hierarchy.to_tree\`<br class="">* `#13802 <<a href="https://github.com/scipy/scipy/pull/13802" class="">https://github.com/scipy/scipy/pull/13802</a>>`__: DEV: add environment.yml file for development with conda/mamba<br class="">* `#13803 <<a href="https://github.com/scipy/scipy/pull/13803" class="">https://github.com/scipy/scipy/pull/13803</a>>`__: DOC: fix doc build warning about arxiv role already being registered<br class="">* `#13804 <<a href="https://github.com/scipy/scipy/pull/13804" class="">https://github.com/scipy/scipy/pull/13804</a>>`__: DOC+MAINT: optimize: lb and ub in the Bounds constructor are...<br class="">* `#13807 <<a href="https://github.com/scipy/scipy/pull/13807" class="">https://github.com/scipy/scipy/pull/13807</a>>`__: MAINT: Dont use parallel Sphinx<br class="">* `#13808 <<a href="https://github.com/scipy/scipy/pull/13808" class="">https://github.com/scipy/scipy/pull/13808</a>>`__: MAINT: cluster.to_tree: more idiomatic looping over rows of matrix...<br class="">* `#13810 <<a href="https://github.com/scipy/scipy/pull/13810" class="">https://github.com/scipy/scipy/pull/13810</a>>`__: MAINT: add a CODEOWNERS file<br class="">* `#13811 <<a href="https://github.com/scipy/scipy/pull/13811" class="">https://github.com/scipy/scipy/pull/13811</a>>`__: MAINT: Add ci skip to azp<br class="">* `#13814 <<a href="https://github.com/scipy/scipy/pull/13814" class="">https://github.com/scipy/scipy/pull/13814</a>>`__: ENH/DOC: pydata sphinx theme polishing<br class="">* `#13817 <<a href="https://github.com/scipy/scipy/pull/13817" class="">https://github.com/scipy/scipy/pull/13817</a>>`__: DOC: Misc parameter typo and casing in scipy/linalg/_decomp_ldl.py<br class="">* `#13818 <<a href="https://github.com/scipy/scipy/pull/13818" class="">https://github.com/scipy/scipy/pull/13818</a>>`__: MAINT: stats: keep \`entropy\` importable from \`scipy.stats.distributions\`<br class="">* `#13820 <<a href="https://github.com/scipy/scipy/pull/13820" class="">https://github.com/scipy/scipy/pull/13820</a>>`__: BUG: update _kendall_p_exact ValueError to f-string<br class="">* `#13831 <<a href="https://github.com/scipy/scipy/pull/13831" class="">https://github.com/scipy/scipy/pull/13831</a>>`__: FIX:DEP: Allow better tolerance control for pinv and pinvh and...<br class="">* `#13832 <<a href="https://github.com/scipy/scipy/pull/13832" class="">https://github.com/scipy/scipy/pull/13832</a>>`__: BUG: stats: Fix rvs for levy_stable when alpha=1<br class="">* `#13833 <<a href="https://github.com/scipy/scipy/pull/13833" class="">https://github.com/scipy/scipy/pull/13833</a>>`__: MAINT: Add inline type hintings for stats.qmc<br class="">* `#13836 <<a href="https://github.com/scipy/scipy/pull/13836" class="">https://github.com/scipy/scipy/pull/13836</a>>`__: MAINT: Fix a couple compiler warnings.<br class="">* `#13838 <<a href="https://github.com/scipy/scipy/pull/13838" class="">https://github.com/scipy/scipy/pull/13838</a>>`__: TST: relax test tolerances for BinomTest<br class="">* `#13841 <<a href="https://github.com/scipy/scipy/pull/13841" class="">https://github.com/scipy/scipy/pull/13841</a>>`__: BLD: add \`-std=c99\` flag to scipy.special extensions using...<br class="">* `#13845 <<a href="https://github.com/scipy/scipy/pull/13845" class="">https://github.com/scipy/scipy/pull/13845</a>>`__: ENH: stats: add \`method\` parameter to \`differential_entropy\`...<br class="">* `#13847 <<a href="https://github.com/scipy/scipy/pull/13847" class="">https://github.com/scipy/scipy/pull/13847</a>>`__: TST: skip on optimize failure on macOS, mark one as xfail<br class="">* `#13848 <<a href="https://github.com/scipy/scipy/pull/13848" class="">https://github.com/scipy/scipy/pull/13848</a>>`__: DOC: optimize: move Nelder Mead doc from Unconstrained minimization...<br class="">* `#13849 <<a href="https://github.com/scipy/scipy/pull/13849" class="">https://github.com/scipy/scipy/pull/13849</a>>`__: DOC: Roadmap update<br class="">* `#13852 <<a href="https://github.com/scipy/scipy/pull/13852" class="">https://github.com/scipy/scipy/pull/13852</a>>`__: CI: fix temporary wrong brew version from GitHub<br class="">* `#13854 <<a href="https://github.com/scipy/scipy/pull/13854" class="">https://github.com/scipy/scipy/pull/13854</a>>`__: ENH: Update Scipy Gitpod<br class="">* `#13859 <<a href="https://github.com/scipy/scipy/pull/13859" class="">https://github.com/scipy/scipy/pull/13859</a>>`__: TST: fix ultra-slow ttest permutations test<br class="">* `#13860 <<a href="https://github.com/scipy/scipy/pull/13860" class="">https://github.com/scipy/scipy/pull/13860</a>>`__: MAINT: clean up LSAP error checking<br class="">* `#13863 <<a href="https://github.com/scipy/scipy/pull/13863" class="">https://github.com/scipy/scipy/pull/13863</a>>`__: DOC: remove seed in examples<br class="">* `#13865 <<a href="https://github.com/scipy/scipy/pull/13865" class="">https://github.com/scipy/scipy/pull/13865</a>>`__: DOC: optimize: The bounds param of differential_evolution is...<br class="">* `#13866 <<a href="https://github.com/scipy/scipy/pull/13866" class="">https://github.com/scipy/scipy/pull/13866</a>>`__: MAINT: special: Remove an unused variable from _poly_approx in...<br class="">* `#13867 <<a href="https://github.com/scipy/scipy/pull/13867" class="">https://github.com/scipy/scipy/pull/13867</a>>`__: DOC: stats: Explain meaning of alternatives for fisher_exact.<br class="">* `#13868 <<a href="https://github.com/scipy/scipy/pull/13868" class="">https://github.com/scipy/scipy/pull/13868</a>>`__: CI: fix the failing job on linux.<br class="">* `#13870 <<a href="https://github.com/scipy/scipy/pull/13870" class="">https://github.com/scipy/scipy/pull/13870</a>>`__: MAINT: move LSAP rectangular matrix handling into solver code<br class="">* `#13871 <<a href="https://github.com/scipy/scipy/pull/13871" class="">https://github.com/scipy/scipy/pull/13871</a>>`__: DOC: Add Gitpod documentation<br class="">* `#13876 <<a href="https://github.com/scipy/scipy/pull/13876" class="">https://github.com/scipy/scipy/pull/13876</a>>`__: Workflow : Add nightly release of NumPy in linux workflows<br class="">* `#13877 <<a href="https://github.com/scipy/scipy/pull/13877" class="">https://github.com/scipy/scipy/pull/13877</a>>`__: DOC: Conform to numpydoc + uniformity.<br class="">* `#13879 <<a href="https://github.com/scipy/scipy/pull/13879" class="">https://github.com/scipy/scipy/pull/13879</a>>`__: BUG: signal: fix get_window argument handling and add tests.<br class="">* `#13881 <<a href="https://github.com/scipy/scipy/pull/13881" class="">https://github.com/scipy/scipy/pull/13881</a>>`__: CI: remove .travis.yml, remove codecov from CircleCI<br class="">* `#13882 <<a href="https://github.com/scipy/scipy/pull/13882" class="">https://github.com/scipy/scipy/pull/13882</a>>`__: BLD: ensure incrementing dev version strings<br class="">* `#13886 <<a href="https://github.com/scipy/scipy/pull/13886" class="">https://github.com/scipy/scipy/pull/13886</a>>`__: TST: optimize: skip test_network_flow_limited_capacity w/ UMFPACK...<br class="">* `#13888 <<a href="https://github.com/scipy/scipy/pull/13888" class="">https://github.com/scipy/scipy/pull/13888</a>>`__: MAINT: Fix issues involving elif conditions<br class="">* `#13891 <<a href="https://github.com/scipy/scipy/pull/13891" class="">https://github.com/scipy/scipy/pull/13891</a>>`__: Rename InivariateSpline to UnivariateSpline<br class="">* `#13893 <<a href="https://github.com/scipy/scipy/pull/13893" class="">https://github.com/scipy/scipy/pull/13893</a>>`__: ENH: linprog HiGHS marginals/sensitivy analysis<br class="">* `#13894 <<a href="https://github.com/scipy/scipy/pull/13894" class="">https://github.com/scipy/scipy/pull/13894</a>>`__: DOC: Add blank line before \`Return\` section.<br class="">* `#13897 <<a href="https://github.com/scipy/scipy/pull/13897" class="">https://github.com/scipy/scipy/pull/13897</a>>`__: DOC: BLD: fix doc build version check, and improve build time<br class="">* `#13903 <<a href="https://github.com/scipy/scipy/pull/13903" class="">https://github.com/scipy/scipy/pull/13903</a>>`__: MAINT: Gitpod fixes<br class="">* `#13907 <<a href="https://github.com/scipy/scipy/pull/13907" class="">https://github.com/scipy/scipy/pull/13907</a>>`__: ENH: Rewrite minkowski metric in C++ with pybind11<br class="">* `#13909 <<a href="https://github.com/scipy/scipy/pull/13909" class="">https://github.com/scipy/scipy/pull/13909</a>>`__: Revert "Workflow : Add nightly release of NumPy in linux workflows"<br class="">* `#13910 <<a href="https://github.com/scipy/scipy/pull/13910" class="">https://github.com/scipy/scipy/pull/13910</a>>`__: DOC: update Readme<br class="">* `#13911 <<a href="https://github.com/scipy/scipy/pull/13911" class="">https://github.com/scipy/scipy/pull/13911</a>>`__: MAINT: use dict built-in rather than OrderedDict<br class="">* `#13920 <<a href="https://github.com/scipy/scipy/pull/13920" class="">https://github.com/scipy/scipy/pull/13920</a>>`__: BUG: Reactivate conda environment in init<br class="">* `#13925 <<a href="https://github.com/scipy/scipy/pull/13925" class="">https://github.com/scipy/scipy/pull/13925</a>>`__: BUG: stats: magnitude of Yates' correction <= abs(observed-expected)...<br class="">* `#13926 <<a href="https://github.com/scipy/scipy/pull/13926" class="">https://github.com/scipy/scipy/pull/13926</a>>`__: DOC: correct return type in disjoint_set.subsets docstring<br class="">* `#13927 <<a href="https://github.com/scipy/scipy/pull/13927" class="">https://github.com/scipy/scipy/pull/13927</a>>`__: DOC/MAINT: Add copyright notice to qmc.primes_from_2_to<br class="">* `#13928 <<a href="https://github.com/scipy/scipy/pull/13928" class="">https://github.com/scipy/scipy/pull/13928</a>>`__: BUG: DOC: signal: fix need argument config and add missing doc...<br class="">* `#13929 <<a href="https://github.com/scipy/scipy/pull/13929" class="">https://github.com/scipy/scipy/pull/13929</a>>`__: REL: add PEP 621 (project metadata in pyproject.toml) support<br class="">* `#13931 <<a href="https://github.com/scipy/scipy/pull/13931" class="">https://github.com/scipy/scipy/pull/13931</a>>`__: MAINT: special: get rid of _logit.c.src<br class="">* `#13934 <<a href="https://github.com/scipy/scipy/pull/13934" class="">https://github.com/scipy/scipy/pull/13934</a>>`__: ENH: signal: make \`get_window\` supports \`general_cosine\`...<br class="">* `#13940 <<a href="https://github.com/scipy/scipy/pull/13940" class="">https://github.com/scipy/scipy/pull/13940</a>>`__: MAINT: QMCEngine d input validation<br class="">* `#13941 <<a href="https://github.com/scipy/scipy/pull/13941" class="">https://github.com/scipy/scipy/pull/13941</a>>`__: MAINT: forward port 1.6.3 relnotes<br class="">* `#13944 <<a href="https://github.com/scipy/scipy/pull/13944" class="">https://github.com/scipy/scipy/pull/13944</a>>`__: BUG: spatial: fix weight handling of \`distance.sokalmichener\`.<br class="">* `#13947 <<a href="https://github.com/scipy/scipy/pull/13947" class="">https://github.com/scipy/scipy/pull/13947</a>>`__: MAINT: Remove duplicate calculations in sokalmichener<br class="">* `#13949 <<a href="https://github.com/scipy/scipy/pull/13949" class="">https://github.com/scipy/scipy/pull/13949</a>>`__: DOC: minor grammar fixes in minimize and KDTree.query<br class="">* `#13951 <<a href="https://github.com/scipy/scipy/pull/13951" class="">https://github.com/scipy/scipy/pull/13951</a>>`__: ENH: Add Boschloo exact test to stats<br class="">* `#13956 <<a href="https://github.com/scipy/scipy/pull/13956" class="">https://github.com/scipy/scipy/pull/13956</a>>`__: ENH: spatial: add \`axis\` and \`keepdims\` optional argument...<br class="">* `#13963 <<a href="https://github.com/scipy/scipy/pull/13963" class="">https://github.com/scipy/scipy/pull/13963</a>>`__: MAINT: stats: Fix unused imports and a few other issues related...<br class="">* `#13971 <<a href="https://github.com/scipy/scipy/pull/13971" class="">https://github.com/scipy/scipy/pull/13971</a>>`__: DOC: Add Karl Pearson's reference to chi-square test<br class="">* `#13972 <<a href="https://github.com/scipy/scipy/pull/13972" class="">https://github.com/scipy/scipy/pull/13972</a>>`__: ENH: cluster: add an optional argument \`seed\` for \`kmeans\`...<br class="">* `#13973 <<a href="https://github.com/scipy/scipy/pull/13973" class="">https://github.com/scipy/scipy/pull/13973</a>>`__: BLD: fix build warnings for causal/anticausal pointers in ndimage<br class="">* `#13975 <<a href="https://github.com/scipy/scipy/pull/13975" class="">https://github.com/scipy/scipy/pull/13975</a>>`__: ENH: set empty array norm to zero.<br class="">* `#13977 <<a href="https://github.com/scipy/scipy/pull/13977" class="">https://github.com/scipy/scipy/pull/13977</a>>`__: MAINT: signal: replace distutils templating with tempita<br class="">* `#13978 <<a href="https://github.com/scipy/scipy/pull/13978" class="">https://github.com/scipy/scipy/pull/13978</a>>`__: MAINT: improve validations and keyword only arguments for some...<br class="">* `#13979 <<a href="https://github.com/scipy/scipy/pull/13979" class="">https://github.com/scipy/scipy/pull/13979</a>>`__: ENH: Add Inverse of Log CDF of Normal Distribution<br class="">* `#13983 <<a href="https://github.com/scipy/scipy/pull/13983" class="">https://github.com/scipy/scipy/pull/13983</a>>`__: Fixing \`ndimage.watershed_ift\` tutorial's documentation<br class="">* `#13987 <<a href="https://github.com/scipy/scipy/pull/13987" class="">https://github.com/scipy/scipy/pull/13987</a>>`__: DOC: Adding examples to docstrings in morphology: white_tophat,...<br class="">* `#13989 <<a href="https://github.com/scipy/scipy/pull/13989" class="">https://github.com/scipy/scipy/pull/13989</a>>`__: DOC: interpolate: improve examples of \`RegularGridInterpolator\`...<br class="">* `#13990 <<a href="https://github.com/scipy/scipy/pull/13990" class="">https://github.com/scipy/scipy/pull/13990</a>>`__: MAINT, DOC: optimize: Make the input validation explanation clear...<br class="">* `#13992 <<a href="https://github.com/scipy/scipy/pull/13992" class="">https://github.com/scipy/scipy/pull/13992</a>>`__: Workflow : Add nightly release of NumPy in linux workflows<br class="">* `#13995 <<a href="https://github.com/scipy/scipy/pull/13995" class="">https://github.com/scipy/scipy/pull/13995</a>>`__: Doc: Continuous integration information<br class="">* `#14000 <<a href="https://github.com/scipy/scipy/pull/14000" class="">https://github.com/scipy/scipy/pull/14000</a>>`__: BUG: sparse: Fix DIA.diagonal bug and add a regression test<br class="">* `#14004 <<a href="https://github.com/scipy/scipy/pull/14004" class="">https://github.com/scipy/scipy/pull/14004</a>>`__: ENH: Fast addition dia matrix<br class="">* `#14006 <<a href="https://github.com/scipy/scipy/pull/14006" class="">https://github.com/scipy/scipy/pull/14006</a>>`__: MAINT: optimize: add validation to check func parameter number...<br class="">* `#14008 <<a href="https://github.com/scipy/scipy/pull/14008" class="">https://github.com/scipy/scipy/pull/14008</a>>`__: BUG: Raise exception for inconsistent WAV header<br class="">* `#14009 <<a href="https://github.com/scipy/scipy/pull/14009" class="">https://github.com/scipy/scipy/pull/14009</a>>`__: DEP: Remove usage of numpy.compat<br class="">* `#14010 <<a href="https://github.com/scipy/scipy/pull/14010" class="">https://github.com/scipy/scipy/pull/14010</a>>`__: MAINT: add support for wheel DL proxy<br class="">* `#14012 <<a href="https://github.com/scipy/scipy/pull/14012" class="">https://github.com/scipy/scipy/pull/14012</a>>`__: DOC: Broaden Exact Test Reference<br class="">* `#14015 <<a href="https://github.com/scipy/scipy/pull/14015" class="">https://github.com/scipy/scipy/pull/14015</a>>`__: MAINT: remove brew update<br class="">* `#14017 <<a href="https://github.com/scipy/scipy/pull/14017" class="">https://github.com/scipy/scipy/pull/14017</a>>`__: BENCH: Add more formats for sparse arithmetic<br class="">* `#14018 <<a href="https://github.com/scipy/scipy/pull/14018" class="">https://github.com/scipy/scipy/pull/14018</a>>`__: BENCH: add benchmark for f_oneway<br class="">* `#14020 <<a href="https://github.com/scipy/scipy/pull/14020" class="">https://github.com/scipy/scipy/pull/14020</a>>`__: MAINT: modify <a href="http://np.int/" class="">np.int</a>\_ to np.int32 to make it the same for 32/64...<br class="">* `#14023 <<a href="https://github.com/scipy/scipy/pull/14023" class="">https://github.com/scipy/scipy/pull/14023</a>>`__: MAINT: Fix clang build and remove some unicode characters<br class="">* `#14025 <<a href="https://github.com/scipy/scipy/pull/14025" class="">https://github.com/scipy/scipy/pull/14025</a>>`__: BUG: sparse: fix DIA.setdiag issue<br class="">* `#14026 <<a href="https://github.com/scipy/scipy/pull/14026" class="">https://github.com/scipy/scipy/pull/14026</a>>`__: TST: optimize: xfail part of test_powell<br class="">* `#14029 <<a href="https://github.com/scipy/scipy/pull/14029" class="">https://github.com/scipy/scipy/pull/14029</a>>`__: CI: github macos fix<br class="">* `#14030 <<a href="https://github.com/scipy/scipy/pull/14030" class="">https://github.com/scipy/scipy/pull/14030</a>>`__: MAINT: use 'yield from <expr>' (PEP 380)<br class="">* `#14031 <<a href="https://github.com/scipy/scipy/pull/14031" class="">https://github.com/scipy/scipy/pull/14031</a>>`__: MAINT: new-style class, removing inheritance to object<br class="">* `#14032 <<a href="https://github.com/scipy/scipy/pull/14032" class="">https://github.com/scipy/scipy/pull/14032</a>>`__: MAINT: CXXFLAGS for Pythran<br class="">* `#14033 <<a href="https://github.com/scipy/scipy/pull/14033" class="">https://github.com/scipy/scipy/pull/14033</a>>`__: ENH: Port sqeuclidean and braycurtis to _distance_pybind<br class="">* `#14034 <<a href="https://github.com/scipy/scipy/pull/14034" class="">https://github.com/scipy/scipy/pull/14034</a>>`__: MAINT: Clean-up 'next = __next__'<br class="">* `#14045 <<a href="https://github.com/scipy/scipy/pull/14045" class="">https://github.com/scipy/scipy/pull/14045</a>>`__: MAINT: bump PYVER pavement.py<br class="">* `#14047 <<a href="https://github.com/scipy/scipy/pull/14047" class="">https://github.com/scipy/scipy/pull/14047</a>>`__: DEV: initialize boost submodule in Gitpod Dockerfile<br class="">* `#14051 <<a href="https://github.com/scipy/scipy/pull/14051" class="">https://github.com/scipy/scipy/pull/14051</a>>`__: BLD: if boost submodule content is missing, error out early<br class="">* `#14052 <<a href="https://github.com/scipy/scipy/pull/14052" class="">https://github.com/scipy/scipy/pull/14052</a>>`__: DOC: missing submodule init information<br class="">* `#14057 <<a href="https://github.com/scipy/scipy/pull/14057" class="">https://github.com/scipy/scipy/pull/14057</a>>`__: DOC: special: Add Examples to \`psi\` docstring<br class="">* `#14058 <<a href="https://github.com/scipy/scipy/pull/14058" class="">https://github.com/scipy/scipy/pull/14058</a>>`__: BUG: fixed a dtype bug in linalg.solve.<br class="">* `#14060 <<a href="https://github.com/scipy/scipy/pull/14060" class="">https://github.com/scipy/scipy/pull/14060</a>>`__: Doc: Fix typo in documentation of spence function.<br class="">* `#14061 <<a href="https://github.com/scipy/scipy/pull/14061" class="">https://github.com/scipy/scipy/pull/14061</a>>`__: MAINT:stats: Type annotations for _sobol.pyx<br class="">* `#14062 <<a href="https://github.com/scipy/scipy/pull/14062" class="">https://github.com/scipy/scipy/pull/14062</a>>`__: DOC: A few small fixes in quickstart_gitpod.rst<br class="">* `#14063 <<a href="https://github.com/scipy/scipy/pull/14063" class="">https://github.com/scipy/scipy/pull/14063</a>>`__: DOC: signal: add Add Examples to \`cont2discrete\` docstring<br class="">* `#14064 <<a href="https://github.com/scipy/scipy/pull/14064" class="">https://github.com/scipy/scipy/pull/14064</a>>`__: DOC: optimize: Add Examples to fmin_bfgs docstring<br class="">* `#14065 <<a href="https://github.com/scipy/scipy/pull/14065" class="">https://github.com/scipy/scipy/pull/14065</a>>`__: Add example for scipy stats.trim1 under docstring<br class="">* `#14066 <<a href="https://github.com/scipy/scipy/pull/14066" class="">https://github.com/scipy/scipy/pull/14066</a>>`__: DOC add example to scipy.special.hermite<br class="">* `#14067 <<a href="https://github.com/scipy/scipy/pull/14067" class="">https://github.com/scipy/scipy/pull/14067</a>>`__: DOC add alpha docstring description, add example to docstring<br class="">* `#14070 <<a href="https://github.com/scipy/scipy/pull/14070" class="">https://github.com/scipy/scipy/pull/14070</a>>`__: DOC add parameters, return, and example to docstring<br class="">* `#14072 <<a href="https://github.com/scipy/scipy/pull/14072" class="">https://github.com/scipy/scipy/pull/14072</a>>`__: MAINT/TST: Fix tests failing with the nightly build of numpy.<br class="">* `#14075 <<a href="https://github.com/scipy/scipy/pull/14075" class="">https://github.com/scipy/scipy/pull/14075</a>>`__: DOC Improve the code snippet in signal.hilbert docstring.<br class="">* `#14076 <<a href="https://github.com/scipy/scipy/pull/14076" class="">https://github.com/scipy/scipy/pull/14076</a>>`__: DOC: Document Jensen-Shannon distance being accepted by cdist/pdist<br class="">* `#14079 <<a href="https://github.com/scipy/scipy/pull/14079" class="">https://github.com/scipy/scipy/pull/14079</a>>`__: BLD: Avoid importing scipy.stats during cythonize stage<br class="">* `#14082 <<a href="https://github.com/scipy/scipy/pull/14082" class="">https://github.com/scipy/scipy/pull/14082</a>>`__: MAINT: Remove old, commented extract_diagonal<br class="">* `#14083 <<a href="https://github.com/scipy/scipy/pull/14083" class="">https://github.com/scipy/scipy/pull/14083</a>>`__: MAINT: sparse: Remove defunct function extract_diagonal<br class="">* `#14085 <<a href="https://github.com/scipy/scipy/pull/14085" class="">https://github.com/scipy/scipy/pull/14085</a>>`__: ENH: Implement canberra distance in _distance_pybind<br class="">* `#14086 <<a href="https://github.com/scipy/scipy/pull/14086" class="">https://github.com/scipy/scipy/pull/14086</a>>`__: MAINT: Clear scipy namespace of entries better imported from...<br class="">* `#14088 <<a href="https://github.com/scipy/scipy/pull/14088" class="">https://github.com/scipy/scipy/pull/14088</a>>`__: Install Pythran from sources for python 3.10<br class="">* `#14092 <<a href="https://github.com/scipy/scipy/pull/14092" class="">https://github.com/scipy/scipy/pull/14092</a>>`__: BUG: Fixes issue with clang.<br class="">* `#14094 <<a href="https://github.com/scipy/scipy/pull/14094" class="">https://github.com/scipy/scipy/pull/14094</a>>`__: DOC: Correct the inconsistence definition of Default in class...<br class="">* `#14105 <<a href="https://github.com/scipy/scipy/pull/14105" class="">https://github.com/scipy/scipy/pull/14105</a>>`__: TST: stats: mannwhitneyu: check that mstats and stats mannwhitneyu...<br class="">* `#14106 <<a href="https://github.com/scipy/scipy/pull/14106" class="">https://github.com/scipy/scipy/pull/14106</a>>`__: DOC: stats.mstats: mannwhitneyu: the returned statistic is the...<br class="">* `#14107 <<a href="https://github.com/scipy/scipy/pull/14107" class="">https://github.com/scipy/scipy/pull/14107</a>>`__: ENH: stats: bootstrap: add \`vectorized\` parameter; automatically...<br class="">* `#14109 <<a href="https://github.com/scipy/scipy/pull/14109" class="">https://github.com/scipy/scipy/pull/14109</a>>`__: BUG: fix two issues in the fblas signature files<br class="">* `#14110 <<a href="https://github.com/scipy/scipy/pull/14110" class="">https://github.com/scipy/scipy/pull/14110</a>>`__: DOC: mailmap update<br class="">* `#14113 <<a href="https://github.com/scipy/scipy/pull/14113" class="">https://github.com/scipy/scipy/pull/14113</a>>`__: ENH: stats: bootstrap: add \`paired\` parameter<br class="">* `#14116 <<a href="https://github.com/scipy/scipy/pull/14116" class="">https://github.com/scipy/scipy/pull/14116</a>>`__: MAINT: fix deprecated Python C API usage in odr<br class="">* `#14118 <<a href="https://github.com/scipy/scipy/pull/14118" class="">https://github.com/scipy/scipy/pull/14118</a>>`__: DOC: 1.7.0 release notes<br class="">* `#14125 <<a href="https://github.com/scipy/scipy/pull/14125" class="">https://github.com/scipy/scipy/pull/14125</a>>`__: DOC: fix typo<br class="">* `#14126 <<a href="https://github.com/scipy/scipy/pull/14126" class="">https://github.com/scipy/scipy/pull/14126</a>>`__: ENH: stats: bootstrap: add \`batch\` parameter to control batch...<br class="">* `#14127 <<a href="https://github.com/scipy/scipy/pull/14127" class="">https://github.com/scipy/scipy/pull/14127</a>>`__: CI: upgrade pip in benchmarks CI run<br class="">* `#14130 <<a href="https://github.com/scipy/scipy/pull/14130" class="">https://github.com/scipy/scipy/pull/14130</a>>`__: BUG: Fix trust-constr report TypeError if verbose is set to 2...<br class="">* `#14133 <<a href="https://github.com/scipy/scipy/pull/14133" class="">https://github.com/scipy/scipy/pull/14133</a>>`__: MAINT: interpolate: raise NotImplementedError not ValueError<br class="">* `#14139 <<a href="https://github.com/scipy/scipy/pull/14139" class="">https://github.com/scipy/scipy/pull/14139</a>>`__: FIX/DOC: lsqr doctests print failure<br class="">* `#14145 <<a href="https://github.com/scipy/scipy/pull/14145" class="">https://github.com/scipy/scipy/pull/14145</a>>`__: MAINT: 1.7.x version pins ("backport")<br class="">* `#14146 <<a href="https://github.com/scipy/scipy/pull/14146" class="">https://github.com/scipy/scipy/pull/14146</a>>`__: MAINT: commit count if no tag<br class="">* `#14164 <<a href="https://github.com/scipy/scipy/pull/14164" class="">https://github.com/scipy/scipy/pull/14164</a>>`__: TST, BUG: fix rbf matrix value<br class="">* `#14166 <<a href="https://github.com/scipy/scipy/pull/14166" class="">https://github.com/scipy/scipy/pull/14166</a>>`__: CI, MAINT: restrictions on pre-release CI<br class="">* `#14171 <<a href="https://github.com/scipy/scipy/pull/14171" class="">https://github.com/scipy/scipy/pull/14171</a>>`__: TST: signal: Bump tolerances for a test of Gustafsson's...<br class="">* `#14175 <<a href="https://github.com/scipy/scipy/pull/14175" class="">https://github.com/scipy/scipy/pull/14175</a>>`__: TST: stats: Loosen tolerance in some binomtest tests.<br class="">* `#14182 <<a href="https://github.com/scipy/scipy/pull/14182" class="">https://github.com/scipy/scipy/pull/14182</a>>`__: MAINT: stats: Update ppcc_plot and ppcc_max docstring.<br class="">* `#14195 <<a href="https://github.com/scipy/scipy/pull/14195" class="">https://github.com/scipy/scipy/pull/14195</a>>`__: MAINT: download-wheels missing import<br class="">* `#14230 <<a href="https://github.com/scipy/scipy/pull/14230" class="">https://github.com/scipy/scipy/pull/14230</a>>`__: REL: stop shipping generated Cython sources in sdist<br class=""><br class="">Checksums<br class="">=========<br class=""><br class="">MD5<br class="">~~~<br class=""><br class="">276042cf01da2970b83883375b036eef  scipy-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl<br class="">8149ae5442d3ca11d477893b9797b565  scipy-1.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl<br class="">32d249d21ec09fe351b471cd578a54bd  scipy-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl<br class="">6f9b11e29d59e276729ec706c38961e2  scipy-1.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl<br class="">c4b23f53f47888744713a25000ed73fd  scipy-1.7.0-cp37-cp37m-win32.whl<br class="">767b17455eba48cbe3949a4a8609d9e7  scipy-1.7.0-cp37-cp37m-win_amd64.whl<br class="">ac0f5c087893240b13a78dbc80e002e1  scipy-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl<br class="">e2e369078c6b7ca29c952cb9971bc154  scipy-1.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl<br class="">2f4d2c55937133983031428405ef50e5  scipy-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl<br class="">092c9b3117c2acc378be46fac846b088  scipy-1.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl<br class="">08a560d8f936ea64d65471382d829b43  scipy-1.7.0-cp38-cp38-win32.whl<br class="">330c71d5ae61a6f1a96573ee5e2dc536  scipy-1.7.0-cp38-cp38-win_amd64.whl<br class="">535e0df93c3005acb69cf32eed57e5d7  scipy-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl<br class="">003d015e6c75d683f8e27e80d731f782  scipy-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl<br class="">9306001377da7b018ac0215eed2ba022  scipy-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl<br class="">ed943492a5f97a086c96b6d158028ba4  scipy-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl<br class="">89499df789ff766d6140ab50b8a56745  scipy-1.7.0-cp39-cp39-win32.whl<br class="">daf4ab11d37576bd792ece587e8f7ae6  scipy-1.7.0-cp39-cp39-win_amd64.whl<br class="">8776cb3e803f07c74ddf1045eb177904  scipy-1.7.0.tar.gz<br class="">a0690bb8aa427fc0a3a59946b532763c  scipy-1.7.0.tar.xz<br class="">f1f1970a34948e59b37e9706a3dfca0e  scipy-1.7.0.zip<br class=""><br class="">SHA256<br class="">~~~~~~<br class=""><br class="">821e75f5c16cd7b0ab0ffe7eb9917e5af7b48c25306b4777287de8d792a5f7f3  scipy-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl<br class="">3e7df79b42c3015058a5554bfeab6fd4c9906c46560c9ddebb5c652840f3e182  scipy-1.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl<br class="">0572256c10ddd058e3d315c555538671ddb2737f27eb56189bfbc3483391403f  scipy-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl<br class="">b77ee5e3a9507622e7f98b16122242a3903397f98d1fe3bc269d904a9025e2bc  scipy-1.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl<br class="">53116abd5060a5b4a58489cf689bee259b779e6b7ecd4ce366e7147aa7c9626e  scipy-1.7.0-cp37-cp37m-win32.whl<br class="">e7b733d4d98e604109715e11f2ab9340eb45d53f803634ed730039070fc3bc11  scipy-1.7.0-cp37-cp37m-win_amd64.whl<br class="">4ef3d4df8af40cb6f4d4eaf7b02780109ebabeec334cda26a7899ec9d8de9176  scipy-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl<br class="">bd4399d4388ca0239a4825e312b3e61b60f743dd6daf49e5870837716502a92a  scipy-1.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl<br class="">80df8af7039bce92fb4cd1ceb056258631b11b3c627384e2d29bb48d44c0cae7  scipy-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl<br class="">6130e22bf6ee506f7cddde7e0515296d97eb6c6c94f7ef5103c2b77aec5833a7  scipy-1.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl<br class="">97ca4552ace1c313707058e774609af59644321e278c3a539322fab2fb09b943  scipy-1.7.0-cp38-cp38-win32.whl<br class="">c5d012cb82cc1dcfa72609abaabb4a4ed8113e3e8ac43464508a418c146be57d  scipy-1.7.0-cp38-cp38-win_amd64.whl<br class="">5eb8f054eebb351af7490bbb57465ba9662c4e16e1786655c6c7ed530eb9a74e  scipy-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl<br class="">7f4b89c223bd09460b52b669e2e642cab73c28855b540e6ed029692546a86f8d  scipy-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl<br class="">2e685fdbfa5b989af4338b29c408b9157ea6addec15d661104c437980c292be5  scipy-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl<br class="">3595c8b64970c9e5a3f137fa1a9eb64da417e78fb7991d0b098b18a00b776d88  scipy-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl<br class="">5a983d3cebc27294897951a494cebd78af2eae37facf75d9e4ad4f1f62229860  scipy-1.7.0-cp39-cp39-win32.whl<br class="">aef6e922aea6f2e6bbb539b413c85210a9ee32757535b84204ebd22723e69704  scipy-1.7.0-cp39-cp39-win_amd64.whl<br class="">998c5e6ea649489302de2c0bc026ed34284f531df89d2bdc8df3a0d44d165739  scipy-1.7.0.tar.gz<br class="">0564d1091b8db03418356f0839cc4bf73b9bf7cd1089586eb690208e1f44bb8d  scipy-1.7.0.tar.xz<br class="">3a0ec7390c491140551f6493611a30605144a4d47c0410e81f49921ada026993  scipy-1.7.0.zip<br class=""></span></span></div></div></div>
_______________________________________________<br class="">NumPy-Discussion mailing list<br class=""><a href="mailto:NumPy-Discussion@python.org" class="">NumPy-Discussion@python.org</a><br class="">https://mail.python.org/mailman/listinfo/numpy-discussion<br class=""></div></blockquote></div><br class=""></div></div></body></html>