<div dir="ltr"><div>Hi all,</div><div><br></div><div>On behalf of the <span class="gmail-il">SciPy</span> development team I'm pleased to announce</div><div>the release of <span class="gmail-il">SciPy</span> <span class="gmail-il">1.5</span>.<span class="gmail-il">0</span>.</div><div><br></div><div>Sources and binary wheels can be found at:<br><a href="https://pypi.org/project/scipy/" target="_blank">https://pypi.org/project/<span class="gmail-il">scipy</span>/</a><br>and at:<br><a href="https://github.com/scipy/scipy/releases/tag/v1.5.0">https://github.com/scipy/scipy/releases/tag/v1.5.0</a>  <br><br>One of a few ways to install this release with pip:<br><br>pip install <span class="gmail-il">scipy</span>==<span class="gmail-il">1.5</span>.<span class="gmail-il">0</span></div><br>==========================<br>SciPy 1.5.0 Release Notes<br>==========================<br><br>SciPy 1.5.0 is the culmination of 6 months of hard work. It contains<br>many new features, numerous bug-fixes, improved test coverage and better<br>documentation. There have been a number of deprecations and API changes<br>in this release, which are documented below. All users are encouraged to<br>upgrade to this release, as there are a large number of bug-fixes and<br>optimizations. Before upgrading, we recommend that users check that<br>their own code does not use deprecated SciPy functionality (to do so,<br>run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).<br>Our development attention will now shift to bug-fix releases on the<br>1.5.x branch, and on adding new features on the master branch.<br><br>This release requires Python 3.6+ and NumPy 1.14.5 or greater.<br><br>For running on PyPy, PyPy3 6.0+ and NumPy 1.15.0 are required.<br><br>Highlights of this release<br>----------------------------------<br><br>-  wrappers for more than a dozen new ``LAPACK`` routines are now available<br>  in `scipy.linalg.lapack`<br>-  Improved support for leveraging 64-bit integer size from linear algebra<br>  backends<br>-  addition of the probability distribution for two-sided one-sample <br>  Kolmogorov-Smirnov tests<br><br><br>New features<br>============<br><br>`scipy.cluster` improvements<br>---------------------------------------<br>Initialization of `scipy.cluster.vq.kmeans2` using ``minit="++"`` had a <br>quadratic complexity in the number of samples. It has been improved, resulting <br>in a much faster initialization with quasi-linear complexity.<br><br>`scipy.cluster.hierarchy.dendrogram` now respects the ``matplotlib`` color<br>palette<br><br>`scipy.fft` improvements<br>----------------------------------<br>A new keyword-only argument ``plan`` is added to all FFT functions in this <br>module. It is reserved for passing in a precomputed plan from libraries <br>providing a FFT backend (such as ``PyFFTW`` and ``mkl-fft``), and it is <br>currently not used in SciPy.<br><br>`<a href="http://scipy.io">scipy.io</a>` improvements<br>---------------------------------<br>`scipy.io.wavfile` error messages are more explicit about what's wrong, and <br>extraneous bytes at the ends of files are ignored instead of raising an error <br>when the data has successfully been read.<br><br>`scipy.io.loadmat` gained a ``simplify_cells`` parameter, which if set to <br>``True`` simplifies the structure of the return value if the ``.mat`` file <br>contains cell arrays.<br><br>``pathlib.Path`` objects are now supported in `<a href="http://scipy.io">scipy.io</a>` Matrix Market I/O<br>functions<br><br>`scipy.linalg` improvements<br>--------------------------------------<br>`scipy.linalg.eigh` has been improved. Now various ``LAPACK`` drivers can be <br>selected at will and also subsets of eigenvalues can be requested via <br>``subset_by_value`` keyword. Another keyword ``subset_by_index`` is introduced.<br>Keywords ``turbo`` and ``eigvals`` are deprecated.<br><br>Similarly, standard and generalized Hermitian eigenvalue ``LAPACK`` routines <br>``?<sy/he>evx`` are added and existing ones now have full ``_lwork``<br>counterparts.<br><br>Wrappers for the following ``LAPACK`` routines have been added to <br>`scipy.linalg.lapack`:<br><br>-  ``?getc2``: computes the LU factorization of a general matrix with complete <br>    pivoting<br>-  ``?gesc2``: solves a linear system given an LU factorization from ``?getc2``<br>-  ``?gejsv``: computes the singular value decomposition of a general matrix <br>    with higher accuracy calculation of tiny singular values and their <br>    corresponding singular vectors<br>-  ``?geqrfp``: computes the QR factorization of a general matrix with <br>    non-negative elements on the diagonal of R<br>-  ``?gtsvx``: solves a linear system with general tridiagonal matrix<br>-  ``?gttrf``: computes the LU factorization of a tridiagonal matrix<br>-  ``?gttrs``: solves a linear system given an LU factorization from ``?gttrf``<br>-  ``?ptsvx``: solves a linear system with symmetric positive definite <br>    tridiagonal matrix<br>-  ``?pttrf``: computes the LU factorization of a symmetric positive definite <br>    tridiagonal matrix<br>-  ``?pttrs``: solves a linear system given an LU factorization from ``?pttrf``<br>-  ``?pteqr``: computes the eigenvectors and eigenvalues of a positive definite <br>    tridiagonal matrix<br>-  ``?tbtrs``: solves a linear system with a triangular banded matrix<br>-  ``?csd``: computes the Cosine Sine decomposition of an orthogonal/unitary <br>    matrix<br><br>Generalized QR factorization routines (``?geqrf``) now have full ``_lwork`` <br>counterparts.<br><br>`scipy.linalg.cossin` Cosine Sine decomposition of unitary matrices has been <br>added.<br><br>The function `scipy.linalg.khatri_rao`, which computes the Khatri-Rao product,<br>was added.<br><br>The new function `scipy.linalg.convolution_matrix` constructs the Toeplitz <br>matrix representing one-dimensional convolution.<br><br>`scipy.optimize` improvements<br>-----------------------------------------<br>The finite difference numerical differentiation used in various ``minimize``<br>methods that use gradients has several new features:<br><br>-  2-point, 3-point, or complex step finite differences can be used. Previously <br>  only a 2-step finite difference was available.<br>-  There is now the possibility to use a relative step size, previously only an<br>  absolute step size was available.<br>-  If the ``minimize`` method uses bounds the numerical differentiation strictly <br>  obeys those limits.<br>-  The numerical differentiation machinery now makes use of a simple cache, <br>  which in some cases can reduce the number of function evaluations.<br>-  ``minimize``'s ``method= 'powell'`` now supports simple bound constraints<br><br>There have been several improvements to `scipy.optimize.linprog`:<br><br>-  The ``linprog`` benchmark suite has been expanded considerably.<br>-  ``linprog``'s dense pivot-based redundancy removal routine and sparse <br>  presolve are faster<br>-  When ``scikit-sparse`` is available, solving sparse problems with <br>  ``method='interior-point'`` is faster<br><br>The caching of values when optimizing a function returning both value and <br>gradient together has been improved, avoiding repeated function evaluations <br>when using a ``HessianApproximation`` such as ``BFGS``.<br><br>``differential_evolution`` can now use the modern ``np.random.Generator`` as <br>well as the legacy ``np.random.RandomState`` as a seed.<br><br>`scipy.signal` improvements<br>--------------------------------------<br>A new optional argument ``include_nyquist`` is added to ``freqz`` functions in <br>this module. It is used for including the last frequency (Nyquist frequency).<br><br>`scipy.signal.find_peaks_cwt` now accepts a ``window_size`` parameter for the <br>size of the window used to calculate the noise floor.<br><br>`scipy.sparse` improvements<br>----------------------------------------<br>Outer indexing is now faster when using a 2d column vector to select column <br>indices.<br><br>`scipy.sparse.lil.tocsr` is faster<br><br>Fixed/improved comparisons between pydata sparse arrays and sparse matrices<br><br>BSR format sparse multiplication performance has been improved.<br><br>`scipy.sparse.linalg.LinearOperator` has gained the new ``ndim`` class<br>attribute<br><br>`scipy.spatial` improvements<br>---------------------------------------<br>`scipy.spatial.geometric_slerp` has been added to enable geometric <br>spherical linear interpolation on an n-sphere<br><br>`scipy.spatial.SphericalVoronoi` now supports calculation of region areas in 2D <br>and 3D cases<br><br>The tree building algorithm used by ``cKDTree`` has improved from quadratic<br>worst case time complexity to loglinear. Benchmarks are also now available for<br>building and querying of balanced/unbalanced kd-trees.<br><br>`scipy.special` improvements<br>----------------------------------------<br>The following functions now have Cython interfaces in `cython_special`:<br><br>-  `scipy.special.erfinv`<br>-  `scipy.special.erfcinv`<br>-  `scipy.special.spherical_jn`<br>-  `scipy.special.spherical_yn`<br>-  `scipy.special.spherical_in`<br>-  `scipy.special.spherical_kn`<br><br>`scipy.special.log_softmax` has been added to calculate the logarithm of softmax <br>function. It provides better accuracy than ``log(scipy.special.softmax(x))`` for <br>inputs that make softmax saturate.<br><br>`scipy.stats` improvements<br>------------------------------------<br>The function for generating random samples in `scipy.stats.dlaplace` has been <br>improved. The new function is approximately twice as fast with a memory<br>footprint reduction between 25 % and 60 % (see gh-11069).<br><br>`scipy.stats` functions that accept a seed for reproducible calculations using <br>random number generation (e.g. random variates from distributions) can now use <br>the modern ``np.random.Generator`` as well as the legacy <br>``np.random.RandomState`` as a seed.<br><br>The ``axis`` parameter was added to `scipy.stats.rankdata`. This allows slices <br>of an array along the given axis to be ranked independently.<br><br>The ``axis`` parameter was added to `scipy.stats.f_oneway`, allowing it to<br>compute multiple one-way ANOVA tests for data stored in n-dimensional<br>arrays.  The performance of ``f_oneway`` was also improved for some cases.<br><br>The PDF and CDF methods for ``stats.geninvgauss`` are now significantly faster <br>as  the numerical integration to calculate the CDF uses a Cython based <br>``LowLevelCallable``.<br><br>Moments of the normal distribution (`scipy.stats.norm`) are now calculated using <br>analytical formulas instead of numerical integration for greater speed and <br>accuracy<br><br>Moments and entropy trapezoidal distribution (`scipy.stats.trapz`) are now <br>calculated using analytical formulas instead of numerical integration for <br>greater speed and accuracy<br><br>Methods of the truncated normal distribution (`scipy.stats.truncnorm`), <br>especially ``_rvs``, are significantly faster after a complete rewrite.<br><br>The `fit` method of the Laplace distribution,  `scipy.stats.laplace`, now uses <br>the analytical formulas for the maximum likelihood estimates of the parameters.<br><br>Generation of random variates is now thread safe for all SciPy distributions. <br>3rd-party distributions may need to modify the signature of the ``_rvs()`` <br>method to conform to ``_rvs(self, ..., size=None, random_state=None)``. (A <br>one-time VisibleDeprecationWarning is emitted when using non-conformant <br>distributions.)<br><br>The Kolmogorov-Smirnov two-sided test statistic distribution <br>(`scipy.stats.kstwo`) was added. Calculates the distribution of the K-S <br>two-sided statistic ``D_n`` for a sample of size n, using a mixture of exact <br>and asymptotic algorithms.<br><br>The new function ``median_abs_deviation`` replaces the deprecated <br>``median_absolute_deviation``.<br><br>The ``wilcoxon`` function now computes the p-value for Wilcoxon's signed rank <br>test using the exact distribution for inputs up to length 25.  The function has <br>a new ``mode`` parameter to specify how the p-value is to be computed.  The <br>default is ``"auto"``, which uses the exact distribution for inputs up to length <br>25 and the normal approximation for larger inputs.<br><br>Added a new Cython-based implementation to evaluate guassian kernel estimates,<br>which should improve the performance of ``gaussian_kde``<br><br>The ``winsorize`` function now has a ``nan_policy`` argument for refined<br>handling of ``nan`` input values.<br><br>The ``binned_statistic_dd`` function with ``statistic="std"`` performance was<br>improved by ~4x.<br><br>``scipy.stats.kstest(rvs, cdf,...)`` now handles both one-sample and <br>two-sample testing. The one-sample variation uses `scipy.stats.ksone` <br>(or `scipy.stats.kstwo` with back off to `scipy.stats.kstwobign`) to calculate <br>the p-value. The two-sample variation, invoked if ``cdf`` is array_like, uses <br>an algorithm described by Hodges to compute the probability directly, only <br>backing off to `scipy.stats.kstwo` in case of overflow. The result in both <br>cases is more accurate p-values, especially for two-sample testing with <br>smaller (or quite different) sizes.<br><br>`scipy.stats.maxwell` performance improvements include a 20 % speed up for<br>`fit()`` and 5 % for ``pdf()``<br><br>`scipy.stats.shapiro` and `scipy.stats.jarque_bera` now return a named tuple <br>for greater consistency with other ``stats`` functions<br><br>Deprecated features<br>================<br><br>`scipy` deprecations<br>----------------------------<br><br>`scipy.special` changes<br>--------------------------------<br>The ``bdtr``, ``bdtrc``, and ``bdtri`` functions are deprecating non-negative <br>non-integral ``n`` arguments.<br><br>`scipy.stats` changes<br>-----------------------------<br>The function ``median_absolute_deviation`` is deprecated. Use <br>``median_abs_deviation`` instead.<br><br>The use of the string ``"raw"`` with the ``scale`` parameter of ``iqr`` is <br>deprecated. Use ``scale=1`` instead.<br><br>Backwards incompatible changes<br>==========================<br><br>`scipy.interpolate` changes<br>-------------------------------------<br><br>`scipy.linalg` changes<br>------------------------------<br>The output signatures of ``?syevr``, ``?heevr`` have been changed from <br>``w, v, info`` to ``w, v, m, isuppz, info``<br><br>The order of output arguments ``w``, ``v`` of ``<sy/he>{gv, gvd, gvx}`` is <br>swapped.<br><br>`scipy.signal` changes<br>-------------------------------<br>The output length of `scipy.signal.upfirdn` has been corrected, resulting <br>outputs may now be shorter for some combinations of up/down ratios and input <br>signal and filter lengths.<br><br>`scipy.signal.resample` now supports a ``domain`` keyword argument for<br>specification of time or frequency domain input.<br><br>Other changes<br>=============<br>Improved support for leveraging 64-bit integer size from linear algebra backends<br>in several parts of the SciPy codebase.<br><br>Shims designed to ensure the compatibility of SciPy with Python 2.7 have now <br>been removed.<br><br>Many warnings due to unused imports and unused assignments have been addressed.<br><br>Many usage examples were added to function docstrings, and many input <br>validations and intuitive exception messages have been added throughout the<br>codebase.<br><br>Early stage adoption of type annotations in a few parts of the codebase<br><br><br>Authors<br>=======<br><br>* @endolith<br>* Hameer Abbasi<br>* ADmitri +<br>* Wesley Alves +<br>* Berkay Antmen +<br>* Sylwester Arabas +<br>* Arne Küderle +<br>* Christoph Baumgarten<br>* Peter Bell<br>* Felix Berkenkamp<br>* Jordão Bragantini +<br>* Clemens Brunner +<br>* Evgeni Burovski<br>* Matthias Bussonnier +<br>* CJ Carey<br>* Derrick Chambers +<br>* Leander Claes +<br>* Christian Clauss<br>* Luigi F. Cruz +<br>* dankleeman<br>* Andras Deak<br>* Milad Sadeghi DM +<br>* jeremie du boisberranger +<br>* Stefan Endres<br>* Malte Esders +<br>* Leo Fang +<br>* felixhekhorn +<br>* Isuru Fernando<br>* Andrew Fowlie<br>* Lakshay Garg +<br>* Gaurav Gijare +<br>* Ralf Gommers<br>* Emmanuelle Gouillart +<br>* Kevin Green +<br>* Martin Grignard +<br>* Maja Gwozdz<br>* Sturla Molden<br>* gyu-don +<br>* Matt Haberland<br>* hakeemo +<br>* Charles Harris<br>* Alex Henrie<br>* Santi Hernandez +<br>* William Hickman +<br>* Till Hoffmann +<br>* Joseph T. Iosue +<br>* Anany Shrey Jain<br>* Jakob Jakobson<br>* Charles Jekel +<br>* Julien Jerphanion +<br>* Jiacheng-Liu +<br>* Christoph Kecht +<br>* Paul Kienzle +<br>* Reidar Kind +<br>* Dmitry E. Kislov +<br>* Konrad +<br>* Konrad0<br>* Takuya KOUMURA +<br>* Krzysztof Pióro<br>* Peter Mahler Larsen<br>* Eric Larson<br>* Antony Lee<br>* Gregory Lee +<br>* Gregory R. Lee<br>* Chelsea Liu<br>* Cong Ma +<br>* Kevin Mader +<br>* Maja Gwóźdź +<br>* Alex Marvin +<br>* Matthias Kümmerer<br>* Nikolay Mayorov<br>* Mazay0 +<br>* G. D. McBain<br>* Nicholas McKibben +<br>* Sabrina J. Mielke +<br>* Sebastian J. Mielke +<br>* Miloš Komarčević +<br>* Shubham Mishra +<br>* Santiago M. Mola +<br>* Grzegorz Mrukwa +<br>* Peyton Murray<br>* Andrew Nelson<br>* Nico Schlömer<br>* nwjenkins +<br>* odidev +<br>* Sambit Panda<br>* Vikas Pandey +<br>* Rick Paris +<br>* Harshal Prakash Patankar +<br>* Balint Pato +<br>* Matti Picus<br>* Ilhan Polat<br>* poom +<br>* Siddhesh Poyarekar<br>* Vladyslav Rachek +<br>* Bharat Raghunathan<br>* Manu Rajput +<br>* Tyler Reddy<br>* Andrew Reed +<br>* Lucas Roberts<br>* Ariel Rokem<br>* Heshy Roskes<br>* Matt Ruffalo<br>* Atsushi Sakai +<br>* Benjamin Santos +<br>* Christoph Schock +<br>* Lisa Schwetlick +<br>* Chris Simpson +<br>* Leo Singer<br>* Kai Striega<br>* Søren Fuglede Jørgensen<br>* Kale-ab Tessera +<br>* Seth Troisi +<br>* Robert Uhl +<br>* Paul van Mulbregt<br>* Vasiliy +<br>* Isaac Virshup +<br>* Pauli Virtanen<br>* Shakthi Visagan +<br>* Jan Vleeshouwers +<br>* Sam Wallan +<br>* Lijun Wang +<br>* Warren Weckesser<br>* Richard Weiss +<br>* wenhui-prudencemed +<br>* Eric Wieser<br>* Josh Wilson<br>* James Wright +<br>* Ruslan Yevdokymov +<br>* Ziyao Zhang +<br><br>A total of 129 people contributed to this release.<br>People with a "+" by their names contributed a patch for the first time.<br>This list of names is automatically generated, and may not be fully complete.<br><br>Issues closed for 1.5.0<br>-------------------------------<br><br>* `#1455 <<a href="https://github.com/scipy/scipy/issues/1455">https://github.com/scipy/scipy/issues/1455</a>>`__: ellipord does returns bogus values if gstop or gpass are negative...<br>* `#1968 <<a href="https://github.com/scipy/scipy/issues/1968">https://github.com/scipy/scipy/issues/1968</a>>`__: correlate2d's output does not agree with correlate's output in...<br>* `#2744 <<a href="https://github.com/scipy/scipy/issues/2744">https://github.com/scipy/scipy/issues/2744</a>>`__: BUG: optimize: '\*\*kw' argument of 'newton_krylov' is not documented<br>* `#4755 <<a href="https://github.com/scipy/scipy/issues/4755">https://github.com/scipy/scipy/issues/4755</a>>`__: TypeError: data type "<i0" not understood<br>* `#4921 <<a href="https://github.com/scipy/scipy/issues/4921">https://github.com/scipy/scipy/issues/4921</a>>`__: scipy.optimize maxiter option not working as expected<br>* `#5144 <<a href="https://github.com/scipy/scipy/issues/5144">https://github.com/scipy/scipy/issues/5144</a>>`__: RuntimeWarning on csgraph.shortest_path when edge lengths are...<br>* `#5309 <<a href="https://github.com/scipy/scipy/issues/5309">https://github.com/scipy/scipy/issues/5309</a>>`__: Documentation of 'hybr' and 'lm' inconsistent in optimize.root<br>* `#6026 <<a href="https://github.com/scipy/scipy/issues/6026">https://github.com/scipy/scipy/issues/6026</a>>`__: Replace approx_grad with _numdiff.approx_derivative in scipy.optimize<br>* `#6502 <<a href="https://github.com/scipy/scipy/issues/6502">https://github.com/scipy/scipy/issues/6502</a>>`__: Computing Eigenvalues in an Interval with LAPACK<br>* `#7058 <<a href="https://github.com/scipy/scipy/issues/7058">https://github.com/scipy/scipy/issues/7058</a>>`__: Errors in special.bdtri and special.bdtr for non-integer k values<br>* `#7700 <<a href="https://github.com/scipy/scipy/issues/7700">https://github.com/scipy/scipy/issues/7700</a>>`__: SuperLU does not respect perm_c="NATURAL"<br>* `#7895 <<a href="https://github.com/scipy/scipy/issues/7895">https://github.com/scipy/scipy/issues/7895</a>>`__: Improvements to io.loadmat<br>* `#8205 <<a href="https://github.com/scipy/scipy/issues/8205">https://github.com/scipy/scipy/issues/8205</a>>`__: ValueError in scipy.linalg.eigvalsh for large matrix<br>* `#8278 <<a href="https://github.com/scipy/scipy/issues/8278">https://github.com/scipy/scipy/issues/8278</a>>`__: Memory limit for scipy.sparse.linalg.spsolve with scikit-umfpack<br>* `#8327 <<a href="https://github.com/scipy/scipy/issues/8327">https://github.com/scipy/scipy/issues/8327</a>>`__: scipy.stats.mstats.winsorize NaN handling<br>* `#8341 <<a href="https://github.com/scipy/scipy/issues/8341">https://github.com/scipy/scipy/issues/8341</a>>`__: scipy.stats.ks_2samp for masked and unmasked data give different...<br>* `#8748 <<a href="https://github.com/scipy/scipy/issues/8748">https://github.com/scipy/scipy/issues/8748</a>>`__: scipy.stats.kstest for same distribution: p-values nonuniform<br>* `#9042 <<a href="https://github.com/scipy/scipy/issues/9042">https://github.com/scipy/scipy/issues/9042</a>>`__: optimize: Incorrect statement about \`jac\` in the \`minimize\`...<br>* `#9197 <<a href="https://github.com/scipy/scipy/issues/9197">https://github.com/scipy/scipy/issues/9197</a>>`__: problem with scipy.signal.butter with 1000+ points array<br>* `#9212 <<a href="https://github.com/scipy/scipy/issues/9212">https://github.com/scipy/scipy/issues/9212</a>>`__: EIGH very very slow --> suggesting an easy fix<br>* `#9553 <<a href="https://github.com/scipy/scipy/issues/9553">https://github.com/scipy/scipy/issues/9553</a>>`__: ndimage routines behave badly when output has memory overlap...<br>* `#9632 <<a href="https://github.com/scipy/scipy/issues/9632">https://github.com/scipy/scipy/issues/9632</a>>`__: ndimage.maximum_filter undocumented behaviour using footprint...<br>* `#9658 <<a href="https://github.com/scipy/scipy/issues/9658">https://github.com/scipy/scipy/issues/9658</a>>`__: `scipy.optimize.minimize(method='COBYLA')` not threadsafe<br>* `#9710 <<a href="https://github.com/scipy/scipy/issues/9710">https://github.com/scipy/scipy/issues/9710</a>>`__: stats.weightedtau([1], [1.0]) SEGFAULTs<br>* `#9797 <<a href="https://github.com/scipy/scipy/issues/9797">https://github.com/scipy/scipy/issues/9797</a>>`__: Master Tracker for some Kolmogorov-Smirnov test Issues<br>* `#9844 <<a href="https://github.com/scipy/scipy/issues/9844">https://github.com/scipy/scipy/issues/9844</a>>`__: scipy.signal.upfirdn gives different length matrix versus MATLAB...<br>* `#9872 <<a href="https://github.com/scipy/scipy/issues/9872">https://github.com/scipy/scipy/issues/9872</a>>`__: scipy.signal.convolve is slower when vectorized<br>* `#9913 <<a href="https://github.com/scipy/scipy/issues/9913">https://github.com/scipy/scipy/issues/9913</a>>`__: BUG: No dt in StateSpace operations<br>* `#10014 <<a href="https://github.com/scipy/scipy/issues/10014">https://github.com/scipy/scipy/issues/10014</a>>`__: Distribution names \`weibull_min\`and \`weibull_max\` should...<br>* `#10159 <<a href="https://github.com/scipy/scipy/issues/10159">https://github.com/scipy/scipy/issues/10159</a>>`__: BUG: stats: chisquare returns incorrect results for arrays of...<br>* `#10302 <<a href="https://github.com/scipy/scipy/issues/10302">https://github.com/scipy/scipy/issues/10302</a>>`__: scipy.fft: Add a \`plan\` argument<br>* `#10332 <<a href="https://github.com/scipy/scipy/issues/10332">https://github.com/scipy/scipy/issues/10332</a>>`__: 'Incomplete wav chunk' inconsistent/reason unknown<br>* `#10441 <<a href="https://github.com/scipy/scipy/issues/10441">https://github.com/scipy/scipy/issues/10441</a>>`__: Remove uses of \`numpy.dual\`?<br>* `#10558 <<a href="https://github.com/scipy/scipy/issues/10558">https://github.com/scipy/scipy/issues/10558</a>>`__: Document implicit sum in csr_matrix() constructor<br>* `#10788 <<a href="https://github.com/scipy/scipy/issues/10788">https://github.com/scipy/scipy/issues/10788</a>>`__: LU with full pivoting<br>* `#10841 <<a href="https://github.com/scipy/scipy/issues/10841">https://github.com/scipy/scipy/issues/10841</a>>`__: Unexpected behavior in linalg.blas.dtrmm wrapper<br>* `#10919 <<a href="https://github.com/scipy/scipy/issues/10919">https://github.com/scipy/scipy/issues/10919</a>>`__: optimize._lbfgsb setulb() function violates parameter bounds<br>* `#10963 <<a href="https://github.com/scipy/scipy/issues/10963">https://github.com/scipy/scipy/issues/10963</a>>`__: kstest, ks_2samp: confusing \`mode\` argument descriptions<br>* `#11022 <<a href="https://github.com/scipy/scipy/issues/11022">https://github.com/scipy/scipy/issues/11022</a>>`__: Unexpected Result in factorial function with NaN input<br>* `#11028 <<a href="https://github.com/scipy/scipy/issues/11028">https://github.com/scipy/scipy/issues/11028</a>>`__: Documentation error in optimize.minimize<br>* `#11058 <<a href="https://github.com/scipy/scipy/issues/11058">https://github.com/scipy/scipy/issues/11058</a>>`__: Adding logsoftmax function<br>* `#11076 <<a href="https://github.com/scipy/scipy/issues/11076">https://github.com/scipy/scipy/issues/11076</a>>`__: ValueError: Unknown wave file format<br>* `#11090 <<a href="https://github.com/scipy/scipy/issues/11090">https://github.com/scipy/scipy/issues/11090</a>>`__: Misconception of the median absolute deviation in stats?<br>* `#11095 <<a href="https://github.com/scipy/scipy/issues/11095">https://github.com/scipy/scipy/issues/11095</a>>`__: BUG: find_peaks_cwt test failures in 32-bit Linux wheels<br>* `#11107 <<a href="https://github.com/scipy/scipy/issues/11107">https://github.com/scipy/scipy/issues/11107</a>>`__: scipy.io.mmread generated an error "TypeError: startswith first...<br>* `#11123 <<a href="https://github.com/scipy/scipy/issues/11123">https://github.com/scipy/scipy/issues/11123</a>>`__: Add wrapper for ?gttrf/?gttrs<br>* `#11128 <<a href="https://github.com/scipy/scipy/issues/11128">https://github.com/scipy/scipy/issues/11128</a>>`__: OverflowError in resample_poly (upfirdn)<br>* `#11132 <<a href="https://github.com/scipy/scipy/issues/11132">https://github.com/scipy/scipy/issues/11132</a>>`__: Possible bug: rv_discret.ppf for percentiles 0 and 100 and loc...<br>* `#11163 <<a href="https://github.com/scipy/scipy/issues/11163">https://github.com/scipy/scipy/issues/11163</a>>`__: Comparisons between scipy spmatrix and can sparse.SparseArray...<br>* `#11168 <<a href="https://github.com/scipy/scipy/issues/11168">https://github.com/scipy/scipy/issues/11168</a>>`__: Generalized Pareto variance inaccurate for concentrations near...<br>* `#11169 <<a href="https://github.com/scipy/scipy/issues/11169">https://github.com/scipy/scipy/issues/11169</a>>`__: Add wrapper for ?geqrfp<br>* `#11184 <<a href="https://github.com/scipy/scipy/issues/11184">https://github.com/scipy/scipy/issues/11184</a>>`__: 2-sided Kolmogorov Smirnov returns p-value of 1<br>* `#11185 <<a href="https://github.com/scipy/scipy/issues/11185">https://github.com/scipy/scipy/issues/11185</a>>`__: The .roots() or solve() function of scipy.interpolate.CubicHermiteSpline...<br>* `#11190 <<a href="https://github.com/scipy/scipy/issues/11190">https://github.com/scipy/scipy/issues/11190</a>>`__: Add wrapper for ?tbtrs<br>* `#11200 <<a href="https://github.com/scipy/scipy/issues/11200">https://github.com/scipy/scipy/issues/11200</a>>`__: Can no longer slice csr_matrix in 1.3.0<br>* `#11207 <<a href="https://github.com/scipy/scipy/issues/11207">https://github.com/scipy/scipy/issues/11207</a>>`__: _minimize_scalar_bounded: reference before assignment<br>* `#11216 <<a href="https://github.com/scipy/scipy/issues/11216">https://github.com/scipy/scipy/issues/11216</a>>`__: linprog: interior-point: Cholmod reordering can be reused<br>* `#11223 <<a href="https://github.com/scipy/scipy/issues/11223">https://github.com/scipy/scipy/issues/11223</a>>`__: Add wrappers for ?pttrf, ?pttrs<br>* `#11224 <<a href="https://github.com/scipy/scipy/issues/11224">https://github.com/scipy/scipy/issues/11224</a>>`__: Add wrapperfor ?pteqr<br>* `#11235 <<a href="https://github.com/scipy/scipy/issues/11235">https://github.com/scipy/scipy/issues/11235</a>>`__: MAINT: Missleading Error Message for IIR Filter<br>* `#11244 <<a href="https://github.com/scipy/scipy/issues/11244">https://github.com/scipy/scipy/issues/11244</a>>`__: Missing reference in \`scipy.optimize.line_search\`<br>* `#11262 <<a href="https://github.com/scipy/scipy/issues/11262">https://github.com/scipy/scipy/issues/11262</a>>`__: Hermitian Eigenvalue Problem eigh() API and wrapper change proposal<br>* `#11266 <<a href="https://github.com/scipy/scipy/issues/11266">https://github.com/scipy/scipy/issues/11266</a>>`__: Sparse matrix constructor data type detection changes on Numpy...<br>* `#11270 <<a href="https://github.com/scipy/scipy/issues/11270">https://github.com/scipy/scipy/issues/11270</a>>`__: CI failing: Travis CI Py36 refguide and Linux_Python_36_32bit_full...<br>* `#11279 <<a href="https://github.com/scipy/scipy/issues/11279">https://github.com/scipy/scipy/issues/11279</a>>`__: linalg.eigh checks whole array for finite values<br>* `#11295 <<a href="https://github.com/scipy/scipy/issues/11295">https://github.com/scipy/scipy/issues/11295</a>>`__: CI: azure does not auto-cancel old jobs on pushes<br>* `#11299 <<a href="https://github.com/scipy/scipy/issues/11299">https://github.com/scipy/scipy/issues/11299</a>>`__: stats.truncnorm.rvs 100x slower in v1.4.x than v1.3.3<br>* `#11315 <<a href="https://github.com/scipy/scipy/issues/11315">https://github.com/scipy/scipy/issues/11315</a>>`__: BUG: special: rgamma on negative integers smaller -34<br>* `#11319 <<a href="https://github.com/scipy/scipy/issues/11319">https://github.com/scipy/scipy/issues/11319</a>>`__: Missing \`int64_t\` declaration in rectangular_lsap.cpp<br>* `#11323 <<a href="https://github.com/scipy/scipy/issues/11323">https://github.com/scipy/scipy/issues/11323</a>>`__: Compilation failure due to missing symbol pthread_atfork<br>* `#11332 <<a href="https://github.com/scipy/scipy/issues/11332">https://github.com/scipy/scipy/issues/11332</a>>`__: BUG: directed_hausdorff distance on sets u and v when u is a...<br>* `#11350 <<a href="https://github.com/scipy/scipy/issues/11350">https://github.com/scipy/scipy/issues/11350</a>>`__: Khatri-Rao product<br>* `#11354 <<a href="https://github.com/scipy/scipy/issues/11354">https://github.com/scipy/scipy/issues/11354</a>>`__: ENH: Add wrapper for ?gejsv<br>* `#11361 <<a href="https://github.com/scipy/scipy/issues/11361">https://github.com/scipy/scipy/issues/11361</a>>`__: Dropped NaN in eval_genlaguerre function<br>* `#11363 <<a href="https://github.com/scipy/scipy/issues/11363">https://github.com/scipy/scipy/issues/11363</a>>`__: Dropped NaN in hyperu function<br>* `#11365 <<a href="https://github.com/scipy/scipy/issues/11365">https://github.com/scipy/scipy/issues/11365</a>>`__: scipy.stats.binned_statistic regressed in v1.4.0<br>* `#11369 <<a href="https://github.com/scipy/scipy/issues/11369">https://github.com/scipy/scipy/issues/11369</a>>`__: Dropped NaN in eval_hermite<br>* `#11370 <<a href="https://github.com/scipy/scipy/issues/11370">https://github.com/scipy/scipy/issues/11370</a>>`__: Dropped NaN in eval_gegenbauer<br>* `#11373 <<a href="https://github.com/scipy/scipy/issues/11373">https://github.com/scipy/scipy/issues/11373</a>>`__: Add wrapper for ?gtsvx<br>* `#11374 <<a href="https://github.com/scipy/scipy/issues/11374">https://github.com/scipy/scipy/issues/11374</a>>`__: Add wrapper for ?ptsvx<br>* `#11391 <<a href="https://github.com/scipy/scipy/issues/11391">https://github.com/scipy/scipy/issues/11391</a>>`__: csgraph.minimum_spanning_tree loses precision<br>* `#11398 <<a href="https://github.com/scipy/scipy/issues/11398">https://github.com/scipy/scipy/issues/11398</a>>`__: Update stats to cope with \`np.random.Generator\` machinery<br>* `#11412 <<a href="https://github.com/scipy/scipy/issues/11412">https://github.com/scipy/scipy/issues/11412</a>>`__: Array copying causes unwanted type casting from complex to float...<br>* `#11415 <<a href="https://github.com/scipy/scipy/issues/11415">https://github.com/scipy/scipy/issues/11415</a>>`__: Where is the Wiener Filter derived from?<br>* `#11416 <<a href="https://github.com/scipy/scipy/issues/11416">https://github.com/scipy/scipy/issues/11416</a>>`__: _lib._util.getargspec_no_self is missing KEYWORD_ONLY support<br>* `#11428 <<a href="https://github.com/scipy/scipy/issues/11428">https://github.com/scipy/scipy/issues/11428</a>>`__: Documentation on SHGO inequality constraints appears contradictory<br>* `#11429 <<a href="https://github.com/scipy/scipy/issues/11429">https://github.com/scipy/scipy/issues/11429</a>>`__: Add LAPACK's ZUNCSD cosine sine decomposition<br>* `#11438 <<a href="https://github.com/scipy/scipy/issues/11438">https://github.com/scipy/scipy/issues/11438</a>>`__: run_dualannealing passes bounds incorrectly in benchmarks/optimize.py<br>* `#11441 <<a href="https://github.com/scipy/scipy/issues/11441">https://github.com/scipy/scipy/issues/11441</a>>`__: Can't run optimize benchmarks<br>* `#11442 <<a href="https://github.com/scipy/scipy/issues/11442">https://github.com/scipy/scipy/issues/11442</a>>`__: Chebyshev weights<br>* `#11448 <<a href="https://github.com/scipy/scipy/issues/11448">https://github.com/scipy/scipy/issues/11448</a>>`__: Wrongly typed comparison in integrate.quad<br>* `#11458 <<a href="https://github.com/scipy/scipy/issues/11458">https://github.com/scipy/scipy/issues/11458</a>>`__: BUG: maximum_bipartite_matching produces infeasible solution<br>* `#11460 <<a href="https://github.com/scipy/scipy/issues/11460">https://github.com/scipy/scipy/issues/11460</a>>`__: CI failing: 2 Travis CI tests fail with numpy build or version...<br>* `#11462 <<a href="https://github.com/scipy/scipy/issues/11462">https://github.com/scipy/scipy/issues/11462</a>>`__: Bug on "++" initialization on "kmeans2"<br>* `#11464 <<a href="https://github.com/scipy/scipy/issues/11464">https://github.com/scipy/scipy/issues/11464</a>>`__: Shouldn't data type of KDE evaluation should be like in the input...<br>* `#11468 <<a href="https://github.com/scipy/scipy/issues/11468">https://github.com/scipy/scipy/issues/11468</a>>`__: performance of binned_statistics_2d 100x slowdown from 1.3.2...<br>* `#11484 <<a href="https://github.com/scipy/scipy/issues/11484">https://github.com/scipy/scipy/issues/11484</a>>`__: Callback function doesn't give the same value as the one being...<br>* `#11492 <<a href="https://github.com/scipy/scipy/issues/11492">https://github.com/scipy/scipy/issues/11492</a>>`__: Confusing dendrogram labelling<br>* `#11493 <<a href="https://github.com/scipy/scipy/issues/11493">https://github.com/scipy/scipy/issues/11493</a>>`__: scipy.optimize.least_squares fails if the return array of the...<br>* `#11494 <<a href="https://github.com/scipy/scipy/issues/11494">https://github.com/scipy/scipy/issues/11494</a>>`__: Error performing kronecker product between large sparse vectors<br>* `#11503 <<a href="https://github.com/scipy/scipy/issues/11503">https://github.com/scipy/scipy/issues/11503</a>>`__: medfilt produces 0 on input of length 1<br>* `#11529 <<a href="https://github.com/scipy/scipy/issues/11529">https://github.com/scipy/scipy/issues/11529</a>>`__: Pyflakes generates almost 700 warnings.<br>* `#11566 <<a href="https://github.com/scipy/scipy/issues/11566">https://github.com/scipy/scipy/issues/11566</a>>`__: irfft/irfft2/irfftn docs are slightly confusing re: input type.<br>* `#11572 <<a href="https://github.com/scipy/scipy/issues/11572">https://github.com/scipy/scipy/issues/11572</a>>`__: least_squares: too small tolerances not catched with method='lm'<br>* `#11581 <<a href="https://github.com/scipy/scipy/issues/11581">https://github.com/scipy/scipy/issues/11581</a>>`__: DOC: scipy.interpolate.RectSphereBivariateSpline<br>* `#11586 <<a href="https://github.com/scipy/scipy/issues/11586">https://github.com/scipy/scipy/issues/11586</a>>`__: Differential evolution breaks with LinearConstraints with sparse...<br>* `#11595 <<a href="https://github.com/scipy/scipy/issues/11595">https://github.com/scipy/scipy/issues/11595</a>>`__: scipy.spatial.cKDTree construction slow for some datasets<br>* `#11598 <<a href="https://github.com/scipy/scipy/issues/11598">https://github.com/scipy/scipy/issues/11598</a>>`__: output of special.voigt_profile when sigma=0<br>* `#11601 <<a href="https://github.com/scipy/scipy/issues/11601">https://github.com/scipy/scipy/issues/11601</a>>`__: linalg tests failing in runtests.py<br>* `#11602 <<a href="https://github.com/scipy/scipy/issues/11602">https://github.com/scipy/scipy/issues/11602</a>>`__: scipy.optimize.linear_sum_assignment returns reverse diagonal...<br>* `#11610 <<a href="https://github.com/scipy/scipy/issues/11610">https://github.com/scipy/scipy/issues/11610</a>>`__: Analytic formula for normal moments<br>* `#11611 <<a href="https://github.com/scipy/scipy/issues/11611">https://github.com/scipy/scipy/issues/11611</a>>`__: Build failure with gfortran 10<br>* `#11613 <<a href="https://github.com/scipy/scipy/issues/11613">https://github.com/scipy/scipy/issues/11613</a>>`__: TST, MAINT: test_quadpack TestCtypesQuad wasn't fully migrated...<br>* `#11630 <<a href="https://github.com/scipy/scipy/issues/11630">https://github.com/scipy/scipy/issues/11630</a>>`__: SmoothBivariateSpline bbox parameter<br>* `#11635 <<a href="https://github.com/scipy/scipy/issues/11635">https://github.com/scipy/scipy/issues/11635</a>>`__: typo in docstring of scipy.stats.norminvgauss<br>* `#11637 <<a href="https://github.com/scipy/scipy/issues/11637">https://github.com/scipy/scipy/issues/11637</a>>`__: BUG: core dumps when calling scipy.interpolate.interp1d with...<br>* `#11638 <<a href="https://github.com/scipy/scipy/issues/11638">https://github.com/scipy/scipy/issues/11638</a>>`__: better documentation for 'return_all' option in minimize(Nelder...<br>* `#11652 <<a href="https://github.com/scipy/scipy/issues/11652">https://github.com/scipy/scipy/issues/11652</a>>`__: TST, MAINT: CI failures for pre-release NumPy wheels<br>* `#11659 <<a href="https://github.com/scipy/scipy/issues/11659">https://github.com/scipy/scipy/issues/11659</a>>`__: optimize.fmin_l_bfgs_b needs bound check and appropiate error...<br>* `#11660 <<a href="https://github.com/scipy/scipy/issues/11660">https://github.com/scipy/scipy/issues/11660</a>>`__: BUG/ENH: distribution.ncf with nc=0 returns nan<br>* `#11661 <<a href="https://github.com/scipy/scipy/issues/11661">https://github.com/scipy/scipy/issues/11661</a>>`__: scipy.ndimage.convolve1d and correlate1d don't behave properly...<br>* `#11669 <<a href="https://github.com/scipy/scipy/issues/11669">https://github.com/scipy/scipy/issues/11669</a>>`__: p-value varies with the order of the data<br>* `#11676 <<a href="https://github.com/scipy/scipy/issues/11676">https://github.com/scipy/scipy/issues/11676</a>>`__: documentation of scipy.spatial.HalfspaceIntersection: wrong method...<br>* `#11685 <<a href="https://github.com/scipy/scipy/issues/11685">https://github.com/scipy/scipy/issues/11685</a>>`__: Rotation cannot be expressed as matrix<br>* `#11686 <<a href="https://github.com/scipy/scipy/issues/11686">https://github.com/scipy/scipy/issues/11686</a>>`__: MAINT: mypy imports of Cython "modules"<br>* `#11693 <<a href="https://github.com/scipy/scipy/issues/11693">https://github.com/scipy/scipy/issues/11693</a>>`__: TestDifferentialEvolutionSolver::test_L4 failing in CI<br>* `#11696 <<a href="https://github.com/scipy/scipy/issues/11696">https://github.com/scipy/scipy/issues/11696</a>>`__: DOC: incorrect compiler information for macOS in docs<br>* `#11709 <<a href="https://github.com/scipy/scipy/issues/11709">https://github.com/scipy/scipy/issues/11709</a>>`__: eigh() tests fail to pass, crash Python with seemingly ramdom...<br>* `#11763 <<a href="https://github.com/scipy/scipy/issues/11763">https://github.com/scipy/scipy/issues/11763</a>>`__: Small error in gamma continuous rv fit comments<br>* `#11769 <<a href="https://github.com/scipy/scipy/issues/11769">https://github.com/scipy/scipy/issues/11769</a>>`__: truncnorm.rvs Weird Behaviors<br>* `#11770 <<a href="https://github.com/scipy/scipy/issues/11770">https://github.com/scipy/scipy/issues/11770</a>>`__: crash in TestEigh::test_value_subsets<br>* `#11795 <<a href="https://github.com/scipy/scipy/issues/11795">https://github.com/scipy/scipy/issues/11795</a>>`__: trapz distribution mean computed using single precision<br>* `#11800 <<a href="https://github.com/scipy/scipy/issues/11800">https://github.com/scipy/scipy/issues/11800</a>>`__: Segmentation fault in scipy.odr for multidimensional independent...<br>* `#11811 <<a href="https://github.com/scipy/scipy/issues/11811">https://github.com/scipy/scipy/issues/11811</a>>`__: pyflakes silently failing on travis-ci<br>* `#11826 <<a href="https://github.com/scipy/scipy/issues/11826">https://github.com/scipy/scipy/issues/11826</a>>`__: Error with _fblas<br>* `#11827 <<a href="https://github.com/scipy/scipy/issues/11827">https://github.com/scipy/scipy/issues/11827</a>>`__: \`fft.tests.test_numpy.test_multiprocess\` hangs on Python3.8...<br>* `#11835 <<a href="https://github.com/scipy/scipy/issues/11835">https://github.com/scipy/scipy/issues/11835</a>>`__: tests with \`multiprocessing\` hang on Python 3.8 on macOS<br>* `#11839 <<a href="https://github.com/scipy/scipy/issues/11839">https://github.com/scipy/scipy/issues/11839</a>>`__: linalg.expm returns nans with RuntimeWarning: overflow encountered...<br>* `#11856 <<a href="https://github.com/scipy/scipy/issues/11856">https://github.com/scipy/scipy/issues/11856</a>>`__: Documentation of fit methods for \`weibull_min\` and \`exponweib\`...<br>* `#11868 <<a href="https://github.com/scipy/scipy/issues/11868">https://github.com/scipy/scipy/issues/11868</a>>`__: Function always evaluated twice when using HessianUpdateStrategy...<br>* `#11875 <<a href="https://github.com/scipy/scipy/issues/11875">https://github.com/scipy/scipy/issues/11875</a>>`__: Typo in the docstring of simps()<br>* `#11877 <<a href="https://github.com/scipy/scipy/issues/11877">https://github.com/scipy/scipy/issues/11877</a>>`__: kmeans2 '++' method is orders of magnitude slower than sklearn.cluster.KMeans()<br>* `#11884 <<a href="https://github.com/scipy/scipy/issues/11884">https://github.com/scipy/scipy/issues/11884</a>>`__: The upper code lines are dead code<br>* `#11886 <<a href="https://github.com/scipy/scipy/issues/11886">https://github.com/scipy/scipy/issues/11886</a>>`__: Array shape mismatch in scipy.optimize<br>* `#11892 <<a href="https://github.com/scipy/scipy/issues/11892">https://github.com/scipy/scipy/issues/11892</a>>`__: BUG: stats: Incorrect handling of edges cases by ttest_rel and...<br>* `#11908 <<a href="https://github.com/scipy/scipy/issues/11908">https://github.com/scipy/scipy/issues/11908</a>>`__: LinearOperator should have ndim attribute<br>* `#11910 <<a href="https://github.com/scipy/scipy/issues/11910">https://github.com/scipy/scipy/issues/11910</a>>`__: Documentation missing for what M is in init argument<br>* `#11922 <<a href="https://github.com/scipy/scipy/issues/11922">https://github.com/scipy/scipy/issues/11922</a>>`__: macOS actions CI has started failing in last couple of days.<br>* `#11928 <<a href="https://github.com/scipy/scipy/issues/11928">https://github.com/scipy/scipy/issues/11928</a>>`__: DOC: signal: Wrong description for sepfir2d, cspline2d, qspline2d<br>* `#11944 <<a href="https://github.com/scipy/scipy/issues/11944">https://github.com/scipy/scipy/issues/11944</a>>`__: curve_fit documentation unclear on default value of absolute_sigma<br>* `#11945 <<a href="https://github.com/scipy/scipy/issues/11945">https://github.com/scipy/scipy/issues/11945</a>>`__: Add a (potentially temporary) py.typed file?<br>* `#11949 <<a href="https://github.com/scipy/scipy/issues/11949">https://github.com/scipy/scipy/issues/11949</a>>`__: ValueError 'k exceeds matrix dimensions' for sparse.diagonal()...<br>* `#11951 <<a href="https://github.com/scipy/scipy/issues/11951">https://github.com/scipy/scipy/issues/11951</a>>`__: BUG: asv benchmark failed because of cython version<br>* `#11967 <<a href="https://github.com/scipy/scipy/issues/11967">https://github.com/scipy/scipy/issues/11967</a>>`__: BLD: Azure windows runs complain about drives<br>* `#11973 <<a href="https://github.com/scipy/scipy/issues/11973">https://github.com/scipy/scipy/issues/11973</a>>`__: oaconvolve(a,b,'same') differs in shape from convolve(a,b,'same')...<br>* `#12002 <<a href="https://github.com/scipy/scipy/issues/12002">https://github.com/scipy/scipy/issues/12002</a>>`__: pybind11 license<br>* `#12003 <<a href="https://github.com/scipy/scipy/issues/12003">https://github.com/scipy/scipy/issues/12003</a>>`__: MAINT: circular SphericalVoronoi input<br>* `#12015 <<a href="https://github.com/scipy/scipy/issues/12015">https://github.com/scipy/scipy/issues/12015</a>>`__: Reordering of CSC matrix breaks when you go above int32 limits<br>* `#12031 <<a href="https://github.com/scipy/scipy/issues/12031">https://github.com/scipy/scipy/issues/12031</a>>`__: Documentation Rendering Issues Visible in CircleCI Artifacts<br>* `#12037 <<a href="https://github.com/scipy/scipy/issues/12037">https://github.com/scipy/scipy/issues/12037</a>>`__: MAINT, CI: new Cython 3.0a4 issue<br>* `#12087 <<a href="https://github.com/scipy/scipy/issues/12087">https://github.com/scipy/scipy/issues/12087</a>>`__: DOC: some odr models are missing docs<br>* `#12119 <<a href="https://github.com/scipy/scipy/issues/12119">https://github.com/scipy/scipy/issues/12119</a>>`__: signal.fftconvolve no longer convolves types f8 and numpy.float64<br>* `#12149 <<a href="https://github.com/scipy/scipy/issues/12149">https://github.com/scipy/scipy/issues/12149</a>>`__: Documentation of Rosenbrock function<br>* `#12173 <<a href="https://github.com/scipy/scipy/issues/12173">https://github.com/scipy/scipy/issues/12173</a>>`__: Large memory usage when indexing sparse matrices with \`np.ix_\`<br>* `#12178 <<a href="https://github.com/scipy/scipy/issues/12178">https://github.com/scipy/scipy/issues/12178</a>>`__: BUG: stats: Some discrete distributions don't accept lists of...<br>* `#12220 <<a href="https://github.com/scipy/scipy/issues/12220">https://github.com/scipy/scipy/issues/12220</a>>`__: BUG, REL: gh_lists.py compromised scraping<br>* `#12239 <<a href="https://github.com/scipy/scipy/issues/12239">https://github.com/scipy/scipy/issues/12239</a>>`__: BUG: median absolute deviation handling of nan <br>* `#12301 <<a href="https://github.com/scipy/scipy/issues/12301">https://github.com/scipy/scipy/issues/12301</a>>`__: integer overflow in scipy.sparse.sputils.check_shape when matrix size > 2^32<br>* `#12314 <<a href="https://github.com/scipy/scipy/issues/12314">https://github.com/scipy/scipy/issues/12314</a>>`__: scipy.spatial.transform.Rotation multiplication does not normalize quaternion<br><br>Pull requests for 1.5.0<br>------------------------------<br><br>* `#6510 <<a href="https://github.com/scipy/scipy/pull/6510">https://github.com/scipy/scipy/pull/6510</a>>`__: Add Eigenvalue Range Functionality for Symmetric Eigenvalue Problems<br>* `#9525 <<a href="https://github.com/scipy/scipy/pull/9525">https://github.com/scipy/scipy/pull/9525</a>>`__: BUG: SuperLU 'NATURAL' order applies a column permutation<br>* `#9634 <<a href="https://github.com/scipy/scipy/pull/9634">https://github.com/scipy/scipy/pull/9634</a>>`__: Add the number of Jacobian evaluations to the output of L-BFGS-B.<br>* `#9719 <<a href="https://github.com/scipy/scipy/pull/9719">https://github.com/scipy/scipy/pull/9719</a>>`__: ENH: Added kstwo probability distribution for two-sided one-sample...<br>* `#9783 <<a href="https://github.com/scipy/scipy/pull/9783">https://github.com/scipy/scipy/pull/9783</a>>`__: WIP: optimize: added (dense) interpolative decomposition redundancy...<br>* `#10053 <<a href="https://github.com/scipy/scipy/pull/10053">https://github.com/scipy/scipy/pull/10053</a>>`__: Adding docstring to weibull_min and weibull_max based on issue...<br>* `#10136 <<a href="https://github.com/scipy/scipy/pull/10136">https://github.com/scipy/scipy/pull/10136</a>>`__: DEP: Add warning to linprog_verbose_callback<br>* `#10380 <<a href="https://github.com/scipy/scipy/pull/10380">https://github.com/scipy/scipy/pull/10380</a>>`__: ENH: add geometric_slerp<br>* `#10602 <<a href="https://github.com/scipy/scipy/pull/10602">https://github.com/scipy/scipy/pull/10602</a>>`__: MAINT: optimize: refactor common linprog arguments into namedtuple<br>* `#10648 <<a href="https://github.com/scipy/scipy/pull/10648">https://github.com/scipy/scipy/pull/10648</a>>`__: Bounds for the Powell minimization method<br>* `#10673 <<a href="https://github.com/scipy/scipy/pull/10673">https://github.com/scipy/scipy/pull/10673</a>>`__: ENH: approx_fprime --> approx_derivative<br>* `#10759 <<a href="https://github.com/scipy/scipy/pull/10759">https://github.com/scipy/scipy/pull/10759</a>>`__: ENH: calculation of region areas in spatial.SphericalVoronoi<br>* `#10762 <<a href="https://github.com/scipy/scipy/pull/10762">https://github.com/scipy/scipy/pull/10762</a>>`__: BENCH: optimize: more comprehensive linprog benchmarking<br>* `#10796 <<a href="https://github.com/scipy/scipy/pull/10796">https://github.com/scipy/scipy/pull/10796</a>>`__: ENH exact p-values of wilcoxon test in scipy.stats<br>* `#10797 <<a href="https://github.com/scipy/scipy/pull/10797">https://github.com/scipy/scipy/pull/10797</a>>`__: ENH: linalg: LU with full pivoting (wrappers for ?getc2/?gesc2)<br>* `#10824 <<a href="https://github.com/scipy/scipy/pull/10824">https://github.com/scipy/scipy/pull/10824</a>>`__: ENH: Fast gaussian kernel estimator<br>* `#10942 <<a href="https://github.com/scipy/scipy/pull/10942">https://github.com/scipy/scipy/pull/10942</a>>`__: BUG: prevent bound violation in L-BFGS-B optimize method<br>* `#11003 <<a href="https://github.com/scipy/scipy/pull/11003">https://github.com/scipy/scipy/pull/11003</a>>`__: ENH: add scipy.linalg.convolution_matrix<br>* `#11023 <<a href="https://github.com/scipy/scipy/pull/11023">https://github.com/scipy/scipy/pull/11023</a>>`__: improving error message for cubic-interpolate with duplicates<br>* `#11045 <<a href="https://github.com/scipy/scipy/pull/11045">https://github.com/scipy/scipy/pull/11045</a>>`__: MAINT: make bdt{r,rc,ri}() functions accept double n,k args +...<br>* `#11063 <<a href="https://github.com/scipy/scipy/pull/11063">https://github.com/scipy/scipy/pull/11063</a>>`__: Fix documentation error in optimize.minimize<br>* `#11069 <<a href="https://github.com/scipy/scipy/pull/11069">https://github.com/scipy/scipy/pull/11069</a>>`__: ENH: stats.dlaplace.rvs improvements<br>* `#11071 <<a href="https://github.com/scipy/scipy/pull/11071">https://github.com/scipy/scipy/pull/11071</a>>`__: DOC: Added examples to maximum_position in ndimage<br>* `#11075 <<a href="https://github.com/scipy/scipy/pull/11075">https://github.com/scipy/scipy/pull/11075</a>>`__: DOC: Update stylistic consistency in multiple files<br>* `#11097 <<a href="https://github.com/scipy/scipy/pull/11097">https://github.com/scipy/scipy/pull/11097</a>>`__: BUG: stats: fixing chisquare to return correct results for arrays...<br>* `#11110 <<a href="https://github.com/scipy/scipy/pull/11110">https://github.com/scipy/scipy/pull/11110</a>>`__: ENH: special: Cythonise erfinv, erfcinv<br>* `#11112 <<a href="https://github.com/scipy/scipy/pull/11112">https://github.com/scipy/scipy/pull/11112</a>>`__: BUG: special: Return NaN outside the domain of \`eval_hermite\`<br>* `#11114 <<a href="https://github.com/scipy/scipy/pull/11114">https://github.com/scipy/scipy/pull/11114</a>>`__: BUG: special: fix \`hyp1f1\` for nonnegative integral \`a\` and...<br>* `#11115 <<a href="https://github.com/scipy/scipy/pull/11115">https://github.com/scipy/scipy/pull/11115</a>>`__: DOC: special: add docstrings for \`kei\`, \`ker\`, \`keip\`,...<br>* `#11130 <<a href="https://github.com/scipy/scipy/pull/11130">https://github.com/scipy/scipy/pull/11130</a>>`__: ENH: support for circular input<br>* `#11136 <<a href="https://github.com/scipy/scipy/pull/11136">https://github.com/scipy/scipy/pull/11136</a>>`__: BUG: expm handling of empty input<br>* `#11138 <<a href="https://github.com/scipy/scipy/pull/11138">https://github.com/scipy/scipy/pull/11138</a>>`__: DOC: stylistic consistency, punctuation, etc.<br>* `#11139 <<a href="https://github.com/scipy/scipy/pull/11139">https://github.com/scipy/scipy/pull/11139</a>>`__: MAINT: cluster: use cython_blas, remove handwritten BLAS wrappers<br>* `#11146 <<a href="https://github.com/scipy/scipy/pull/11146">https://github.com/scipy/scipy/pull/11146</a>>`__: DOC: update docs on bp parameter for detrend<br>* `#11151 <<a href="https://github.com/scipy/scipy/pull/11151">https://github.com/scipy/scipy/pull/11151</a>>`__: DOC: special: add docstrings for \`bei\`, \`ber\`, \`beip\`,...<br>* `#11156 <<a href="https://github.com/scipy/scipy/pull/11156">https://github.com/scipy/scipy/pull/11156</a>>`__: ENH: add input validation for ellipord.<br>* `#11157 <<a href="https://github.com/scipy/scipy/pull/11157">https://github.com/scipy/scipy/pull/11157</a>>`__: DOC: stylistic revision, punctuation, consistency<br>* `#11160 <<a href="https://github.com/scipy/scipy/pull/11160">https://github.com/scipy/scipy/pull/11160</a>>`__: ignore warning on 0 \* inf in basin hopping<br>* `#11162 <<a href="https://github.com/scipy/scipy/pull/11162">https://github.com/scipy/scipy/pull/11162</a>>`__: DOC: minor stylistic revision, undo changes<br>* `#11164 <<a href="https://github.com/scipy/scipy/pull/11164">https://github.com/scipy/scipy/pull/11164</a>>`__: ENH/ BUG: Pydata sparse equality<br>* `#11171 <<a href="https://github.com/scipy/scipy/pull/11171">https://github.com/scipy/scipy/pull/11171</a>>`__: Fix dtype validation of "seuclidean" metric V parameter<br>* `#11177 <<a href="https://github.com/scipy/scipy/pull/11177">https://github.com/scipy/scipy/pull/11177</a>>`__: BUG: stats: Improve genpareto stats calculations.<br>* `#11180 <<a href="https://github.com/scipy/scipy/pull/11180">https://github.com/scipy/scipy/pull/11180</a>>`__: MAINT: stats: Some clean up in test_distributions.py.<br>* `#11187 <<a href="https://github.com/scipy/scipy/pull/11187">https://github.com/scipy/scipy/pull/11187</a>>`__: ENH: add functionality log_softmax to SciPy.special.<br>* `#11188 <<a href="https://github.com/scipy/scipy/pull/11188">https://github.com/scipy/scipy/pull/11188</a>>`__: MAINT: add rvs method to argus in scipy.stats<br>* `#11196 <<a href="https://github.com/scipy/scipy/pull/11196">https://github.com/scipy/scipy/pull/11196</a>>`__: DOC: special: add to docstrings of Kelvin zeros functions<br>* `#11202 <<a href="https://github.com/scipy/scipy/pull/11202">https://github.com/scipy/scipy/pull/11202</a>>`__: BUG: fix edge counting in shortest_path<br>* `#11218 <<a href="https://github.com/scipy/scipy/pull/11218">https://github.com/scipy/scipy/pull/11218</a>>`__: BUG: scipy/interpolate: fix PPoly/Cubic\*Spline roots() extrapolation...<br>* `#11225 <<a href="https://github.com/scipy/scipy/pull/11225">https://github.com/scipy/scipy/pull/11225</a>>`__: Add a warning to constant input for spearmanr() function<br>* `#11226 <<a href="https://github.com/scipy/scipy/pull/11226">https://github.com/scipy/scipy/pull/11226</a>>`__: Speed up of interior-point method for cholesky solver<br>* `#11229 <<a href="https://github.com/scipy/scipy/pull/11229">https://github.com/scipy/scipy/pull/11229</a>>`__: BUG: Explicit dtype specification in _upfirdn.py<br>* `#11230 <<a href="https://github.com/scipy/scipy/pull/11230">https://github.com/scipy/scipy/pull/11230</a>>`__: Additional citation for optimize tutorial<br>* `#11231 <<a href="https://github.com/scipy/scipy/pull/11231">https://github.com/scipy/scipy/pull/11231</a>>`__: Adds SLSQP test for duplicate f-evals (#10738)<br>* `#11236 <<a href="https://github.com/scipy/scipy/pull/11236">https://github.com/scipy/scipy/pull/11236</a>>`__: MAINT: Improved error message for Wn range in iirfilter.<br>* `#11245 <<a href="https://github.com/scipy/scipy/pull/11245">https://github.com/scipy/scipy/pull/11245</a>>`__: ENH: optimize: dense redundancy removal routine optimizations<br>* `#11247 <<a href="https://github.com/scipy/scipy/pull/11247">https://github.com/scipy/scipy/pull/11247</a>>`__: MAINT: Remove _lib/_numpy_compat.py<br>* `#11248 <<a href="https://github.com/scipy/scipy/pull/11248">https://github.com/scipy/scipy/pull/11248</a>>`__: BUG: rv_discrete.ppf() to handle loc<br>* `#11251 <<a href="https://github.com/scipy/scipy/pull/11251">https://github.com/scipy/scipy/pull/11251</a>>`__: DOC: add reference for linesearch zoom algorithm<br>* `#11253 <<a href="https://github.com/scipy/scipy/pull/11253">https://github.com/scipy/scipy/pull/11253</a>>`__: BUG: fix kendalltau issue where p-value becomes >1<br>* `#11254 <<a href="https://github.com/scipy/scipy/pull/11254">https://github.com/scipy/scipy/pull/11254</a>>`__: MAINT: make special.factorial handle nan correctly<br>* `#11256 <<a href="https://github.com/scipy/scipy/pull/11256">https://github.com/scipy/scipy/pull/11256</a>>`__: DOC: Updated documentation for scipy.linalg.qr<br>* `#11265 <<a href="https://github.com/scipy/scipy/pull/11265">https://github.com/scipy/scipy/pull/11265</a>>`__: Fix: Can no longer slice csr_matrix in 1.3.0<br>* `#11267 <<a href="https://github.com/scipy/scipy/pull/11267">https://github.com/scipy/scipy/pull/11267</a>>`__: BUG: Rework the scaling in the ks_2samp two-sided exact test.<br>* `#11268 <<a href="https://github.com/scipy/scipy/pull/11268">https://github.com/scipy/scipy/pull/11268</a>>`__: DOC: example of NonLinearConstraint<br>* `#11269 <<a href="https://github.com/scipy/scipy/pull/11269">https://github.com/scipy/scipy/pull/11269</a>>`__: Fix: Sparse matrix constructor data type detection changes on...<br>* `#11276 <<a href="https://github.com/scipy/scipy/pull/11276">https://github.com/scipy/scipy/pull/11276</a>>`__: BLD: update minimum Python, NumPy, Cython, Pybind11 versions<br>* `#11277 <<a href="https://github.com/scipy/scipy/pull/11277">https://github.com/scipy/scipy/pull/11277</a>>`__: MAINT: Cleanup conditionals for unsupported numpy verisons<br>* `#11278 <<a href="https://github.com/scipy/scipy/pull/11278">https://github.com/scipy/scipy/pull/11278</a>>`__: MAINT: Cleanup stats.iqr workarounds for unsupported NumPy versions<br>* `#11282 <<a href="https://github.com/scipy/scipy/pull/11282">https://github.com/scipy/scipy/pull/11282</a>>`__: TST/CI: improve traceback formatting for test failures<br>* `#11284 <<a href="https://github.com/scipy/scipy/pull/11284">https://github.com/scipy/scipy/pull/11284</a>>`__: fix docs & behavior for mode sequences in ndimage filters<br>* `#11285 <<a href="https://github.com/scipy/scipy/pull/11285">https://github.com/scipy/scipy/pull/11285</a>>`__: DOC: special: complete the docstrings of Chi-square functions<br>* `#11286 <<a href="https://github.com/scipy/scipy/pull/11286">https://github.com/scipy/scipy/pull/11286</a>>`__: BUG: make loadmat/savemat file opening close resources correctly<br>* `#11287 <<a href="https://github.com/scipy/scipy/pull/11287">https://github.com/scipy/scipy/pull/11287</a>>`__: CI: skip Azure and TravisCI builds on merges and direct pushes...<br>* `#11288 <<a href="https://github.com/scipy/scipy/pull/11288">https://github.com/scipy/scipy/pull/11288</a>>`__: DOC: Fix import in scipy.io.wavfile.read sample code<br>* `#11289 <<a href="https://github.com/scipy/scipy/pull/11289">https://github.com/scipy/scipy/pull/11289</a>>`__: BUG: Use context manager for open<br>* `#11290 <<a href="https://github.com/scipy/scipy/pull/11290">https://github.com/scipy/scipy/pull/11290</a>>`__: MAINT: Remove _lib._version in favour of _lib._pep440<br>* `#11292 <<a href="https://github.com/scipy/scipy/pull/11292">https://github.com/scipy/scipy/pull/11292</a>>`__: DOC: special: add docstrings for various convenience functions<br>* `#11293 <<a href="https://github.com/scipy/scipy/pull/11293">https://github.com/scipy/scipy/pull/11293</a>>`__: DOC: special: fix typo in \`chdtri\` docstring<br>* `#11296 <<a href="https://github.com/scipy/scipy/pull/11296">https://github.com/scipy/scipy/pull/11296</a>>`__: DOC: special: add to docstrings of Bessel zeros and derivatives<br>* `#11297 <<a href="https://github.com/scipy/scipy/pull/11297">https://github.com/scipy/scipy/pull/11297</a>>`__: DOC: special: add parameters/returns sections for Bessel integrals<br>* `#11300 <<a href="https://github.com/scipy/scipy/pull/11300">https://github.com/scipy/scipy/pull/11300</a>>`__: MAINT: Update vendored uarray version<br>* `#11301 <<a href="https://github.com/scipy/scipy/pull/11301">https://github.com/scipy/scipy/pull/11301</a>>`__: CI: azure conditions should require succeeded()<br>* `#11302 <<a href="https://github.com/scipy/scipy/pull/11302">https://github.com/scipy/scipy/pull/11302</a>>`__: ENH: build infrastructure for ILP64 BLAS + ARPACK conversion<br>* `#11303 <<a href="https://github.com/scipy/scipy/pull/11303">https://github.com/scipy/scipy/pull/11303</a>>`__: DOC: special: fix typo in \`besselpoly\` docstring<br>* `#11304 <<a href="https://github.com/scipy/scipy/pull/11304">https://github.com/scipy/scipy/pull/11304</a>>`__: ENH: MAINT: Rewrite of eigh() and relevant wrappers<br>* `#11306 <<a href="https://github.com/scipy/scipy/pull/11306">https://github.com/scipy/scipy/pull/11306</a>>`__: TST: skip test_aligned_mem linalg test that is crashing on ppcle64<br>* `#11307 <<a href="https://github.com/scipy/scipy/pull/11307">https://github.com/scipy/scipy/pull/11307</a>>`__: MAINT: Fix typo 'solutuion' -> 'solution'<br>* `#11308 <<a href="https://github.com/scipy/scipy/pull/11308">https://github.com/scipy/scipy/pull/11308</a>>`__: ENH: do not create 1d array out of a scalar<br>* `#11310 <<a href="https://github.com/scipy/scipy/pull/11310">https://github.com/scipy/scipy/pull/11310</a>>`__: MAINT: clean up object array creation, scalar/1d confusion<br>* `#11311 <<a href="https://github.com/scipy/scipy/pull/11311">https://github.com/scipy/scipy/pull/11311</a>>`__: DOC: Specify custom callable option for metric in cluster.hierarchy.fclusterdata<br>* `#11316 <<a href="https://github.com/scipy/scipy/pull/11316">https://github.com/scipy/scipy/pull/11316</a>>`__: BUG: special: fix behavior for \`rgamma\` zeros<br>* `#11317 <<a href="https://github.com/scipy/scipy/pull/11317">https://github.com/scipy/scipy/pull/11317</a>>`__: BUG: fix floating-point literal comparisons under C99<br>* `#11318 <<a href="https://github.com/scipy/scipy/pull/11318">https://github.com/scipy/scipy/pull/11318</a>>`__: TST: optimize: mark two linprog tests for skipping<br>* `#11320 <<a href="https://github.com/scipy/scipy/pull/11320">https://github.com/scipy/scipy/pull/11320</a>>`__: BUG: Include \`int64_t\` declaration to \`rectangular_lsap.cpp\`<br>* `#11330 <<a href="https://github.com/scipy/scipy/pull/11330">https://github.com/scipy/scipy/pull/11330</a>>`__: MAINT: Update vendored pypocketfft version<br>* `#11333 <<a href="https://github.com/scipy/scipy/pull/11333">https://github.com/scipy/scipy/pull/11333</a>>`__: BUG: directed_hausdorff subset fix<br>* `#11335 <<a href="https://github.com/scipy/scipy/pull/11335">https://github.com/scipy/scipy/pull/11335</a>>`__: [ENH] sparse: Loosen check for sparse outer indexing fast path<br>* `#11337 <<a href="https://github.com/scipy/scipy/pull/11337">https://github.com/scipy/scipy/pull/11337</a>>`__: Undefined name 'e' in pavement.py<br>* `#11338 <<a href="https://github.com/scipy/scipy/pull/11338">https://github.com/scipy/scipy/pull/11338</a>>`__: scipyoptdoc.py: Remove unused variable 'sixu'<br>* `#11340 <<a href="https://github.com/scipy/scipy/pull/11340">https://github.com/scipy/scipy/pull/11340</a>>`__: xrange() was removed in Python 3 in favor of range()<br>* `#11342 <<a href="https://github.com/scipy/scipy/pull/11342">https://github.com/scipy/scipy/pull/11342</a>>`__: range() was removed in Py3 in _binned_statistic.py<br>* `#11343 <<a href="https://github.com/scipy/scipy/pull/11343">https://github.com/scipy/scipy/pull/11343</a>>`__: BUG: constants: fix 'exact' values table<br>* `#11347 <<a href="https://github.com/scipy/scipy/pull/11347">https://github.com/scipy/scipy/pull/11347</a>>`__: ENH: add input validation function and apply it to needed functions<br>* `#11348 <<a href="https://github.com/scipy/scipy/pull/11348">https://github.com/scipy/scipy/pull/11348</a>>`__: MAINT: remove six.string_types usages<br>* `#11349 <<a href="https://github.com/scipy/scipy/pull/11349">https://github.com/scipy/scipy/pull/11349</a>>`__: MAINT: minor doc fix _minimize_trustregion_constr<br>* `#11353 <<a href="https://github.com/scipy/scipy/pull/11353">https://github.com/scipy/scipy/pull/11353</a>>`__: MAINT: py3 remove various six usages<br>* `#11358 <<a href="https://github.com/scipy/scipy/pull/11358">https://github.com/scipy/scipy/pull/11358</a>>`__: ENH: optimize: Use CSR format instead of LIL for speed<br>* `#11362 <<a href="https://github.com/scipy/scipy/pull/11362">https://github.com/scipy/scipy/pull/11362</a>>`__: MAINT: sys.version_info >= 3.5<br>* `#11364 <<a href="https://github.com/scipy/scipy/pull/11364">https://github.com/scipy/scipy/pull/11364</a>>`__: ENH: cache square of sums for f_oneway<br>* `#11368 <<a href="https://github.com/scipy/scipy/pull/11368">https://github.com/scipy/scipy/pull/11368</a>>`__: ENH: add optional argument, "include_nyquist", for freqz()<br>* `#11372 <<a href="https://github.com/scipy/scipy/pull/11372">https://github.com/scipy/scipy/pull/11372</a>>`__: BENCH: optimize: added linprog presolve benchmarks<br>* `#11376 <<a href="https://github.com/scipy/scipy/pull/11376">https://github.com/scipy/scipy/pull/11376</a>>`__: ENH: Add wrapper for ?gttrf/?gttrs<br>* `#11377 <<a href="https://github.com/scipy/scipy/pull/11377">https://github.com/scipy/scipy/pull/11377</a>>`__: MAINT: Remove Python 2 code from tools/authors.py<br>* `#11378 <<a href="https://github.com/scipy/scipy/pull/11378">https://github.com/scipy/scipy/pull/11378</a>>`__: ENH (WIP): Python wrapper for ?tbtrs<br>* `#11379 <<a href="https://github.com/scipy/scipy/pull/11379">https://github.com/scipy/scipy/pull/11379</a>>`__: MAINT: Remove six.with_metaclass from benchmarks/cython_special.py<br>* `#11380 <<a href="https://github.com/scipy/scipy/pull/11380">https://github.com/scipy/scipy/pull/11380</a>>`__: BUG: sparse/isolve: bicg and qmr don't treat x0 correctly<br>* `#11382 <<a href="https://github.com/scipy/scipy/pull/11382">https://github.com/scipy/scipy/pull/11382</a>>`__: MAINT: remove error throw in binned_statistic_dd() on non-finite...<br>* `#11383 <<a href="https://github.com/scipy/scipy/pull/11383">https://github.com/scipy/scipy/pull/11383</a>>`__: MAINT: _lib: remove py2 compat shims in getargspec<br>* `#11384 <<a href="https://github.com/scipy/scipy/pull/11384">https://github.com/scipy/scipy/pull/11384</a>>`__: MAINT: Use numpy scalar types directly<br>* `#11385 <<a href="https://github.com/scipy/scipy/pull/11385">https://github.com/scipy/scipy/pull/11385</a>>`__: ENH: special: add spherical Bessel functions to \`cython_special\`<br>* `#11389 <<a href="https://github.com/scipy/scipy/pull/11389">https://github.com/scipy/scipy/pull/11389</a>>`__: MAINT: line.startswith shouldn't be bytes<br>* `#11393 <<a href="https://github.com/scipy/scipy/pull/11393">https://github.com/scipy/scipy/pull/11393</a>>`__: ENH: Speed up truncnorm's ppf()and rvs() methods<br>* `#11394 <<a href="https://github.com/scipy/scipy/pull/11394">https://github.com/scipy/scipy/pull/11394</a>>`__: MAINT: Remove self._size (and self._random_state) from stats...<br>* `#11395 <<a href="https://github.com/scipy/scipy/pull/11395">https://github.com/scipy/scipy/pull/11395</a>>`__: correction in error message (%d->%g format)<br>* `#11396 <<a href="https://github.com/scipy/scipy/pull/11396">https://github.com/scipy/scipy/pull/11396</a>>`__: DOC: revert gh10540, removing mtrand<br>* `#11397 <<a href="https://github.com/scipy/scipy/pull/11397">https://github.com/scipy/scipy/pull/11397</a>>`__: MAINT: differential_evolution accepts np.random.Generator<br>* `#11402 <<a href="https://github.com/scipy/scipy/pull/11402">https://github.com/scipy/scipy/pull/11402</a>>`__: ENH: stats can use np.random.Generator<br>* `#11404 <<a href="https://github.com/scipy/scipy/pull/11404">https://github.com/scipy/scipy/pull/11404</a>>`__: ENH: add docstring of butter() for transfer function syntax problem<br>* `#11405 <<a href="https://github.com/scipy/scipy/pull/11405">https://github.com/scipy/scipy/pull/11405</a>>`__: DOC: Fix "see also" for SmoothBivariateSpline<br>* `#11408 <<a href="https://github.com/scipy/scipy/pull/11408">https://github.com/scipy/scipy/pull/11408</a>>`__: ENH: Add a \`plan\` argument to FFT functions in \`scipy.fft\`<br>* `#11411 <<a href="https://github.com/scipy/scipy/pull/11411">https://github.com/scipy/scipy/pull/11411</a>>`__: MAINT: check minimize duplicate evaluations<br>* `#11418 <<a href="https://github.com/scipy/scipy/pull/11418">https://github.com/scipy/scipy/pull/11418</a>>`__: ENH: Linalg: Python wrapper for ?geqrfp<br>* `#11419 <<a href="https://github.com/scipy/scipy/pull/11419">https://github.com/scipy/scipy/pull/11419</a>>`__: TST: Python 3.7 mac OS gcc multibuild fix<br>* `#11423 <<a href="https://github.com/scipy/scipy/pull/11423">https://github.com/scipy/scipy/pull/11423</a>>`__: ENH: Add tool to lint diffs<br>* `#11425 <<a href="https://github.com/scipy/scipy/pull/11425">https://github.com/scipy/scipy/pull/11425</a>>`__: FIX: _array_newton should preserve complex inputs<br>* `#11426 <<a href="https://github.com/scipy/scipy/pull/11426">https://github.com/scipy/scipy/pull/11426</a>>`__: MAINT: licence for global optimization benchmarks<br>* `#11431 <<a href="https://github.com/scipy/scipy/pull/11431">https://github.com/scipy/scipy/pull/11431</a>>`__: Make median_absolute_deviation scale argument aligned w/iqr<br>* `#11432 <<a href="https://github.com/scipy/scipy/pull/11432">https://github.com/scipy/scipy/pull/11432</a>>`__: Fix error message typo<br>* `#11433 <<a href="https://github.com/scipy/scipy/pull/11433">https://github.com/scipy/scipy/pull/11433</a>>`__: DOC: Remove L from longs<br>* `#11434 <<a href="https://github.com/scipy/scipy/pull/11434">https://github.com/scipy/scipy/pull/11434</a>>`__: MAINT: Python3 improvements to refguide_check.py<br>* `#11435 <<a href="https://github.com/scipy/scipy/pull/11435">https://github.com/scipy/scipy/pull/11435</a>>`__: DOC: Update runtest --parallel help<br>* `#11436 <<a href="https://github.com/scipy/scipy/pull/11436">https://github.com/scipy/scipy/pull/11436</a>>`__: MAINT: Remove checks for sys.version < 3.5<br>* `#11437 <<a href="https://github.com/scipy/scipy/pull/11437">https://github.com/scipy/scipy/pull/11437</a>>`__: DOC: Fix documentation issue<br>* `#11439 <<a href="https://github.com/scipy/scipy/pull/11439">https://github.com/scipy/scipy/pull/11439</a>>`__: Support path objects (PEP 519) in mmio functions<br>* `#11440 <<a href="https://github.com/scipy/scipy/pull/11440">https://github.com/scipy/scipy/pull/11440</a>>`__: correct bounds pass in run_dualannealing for benchmarks/optimize.py<br>* `#11443 <<a href="https://github.com/scipy/scipy/pull/11443">https://github.com/scipy/scipy/pull/11443</a>>`__: BENCH: optimize_linprog remove ImportError exception<br>* `#11453 <<a href="https://github.com/scipy/scipy/pull/11453">https://github.com/scipy/scipy/pull/11453</a>>`__: BUG: sparse: convert csc/csr indices to int64 as needed<br>* `#11454 <<a href="https://github.com/scipy/scipy/pull/11454">https://github.com/scipy/scipy/pull/11454</a>>`__: DOC: Remove caveat on \`maximum_bipartite_matching\`<br>* `#11455 <<a href="https://github.com/scipy/scipy/pull/11455">https://github.com/scipy/scipy/pull/11455</a>>`__: BUG: Fix _lib._util.getargspec_no_self lack of KEYWORD_ONLY support.<br>* `#11456 <<a href="https://github.com/scipy/scipy/pull/11456">https://github.com/scipy/scipy/pull/11456</a>>`__: Implementation of khatri_rao product<br>* `#11459 <<a href="https://github.com/scipy/scipy/pull/11459">https://github.com/scipy/scipy/pull/11459</a>>`__: BUG: fix augmentation being broken in maximum_bipartite_matching<br>* `#11461 <<a href="https://github.com/scipy/scipy/pull/11461">https://github.com/scipy/scipy/pull/11461</a>>`__: MAINT: minor spelling corrections in comments in SciPy.sparse.linalg.arpack<br>* `#11467 <<a href="https://github.com/scipy/scipy/pull/11467">https://github.com/scipy/scipy/pull/11467</a>>`__: [MRG] Make result data type of KDE evaluation like in the input...<br>* `#11469 <<a href="https://github.com/scipy/scipy/pull/11469">https://github.com/scipy/scipy/pull/11469</a>>`__: Update integrate.quad documentation<br>* `#11472 <<a href="https://github.com/scipy/scipy/pull/11472">https://github.com/scipy/scipy/pull/11472</a>>`__: Fixed result typo<br>* `#11476 <<a href="https://github.com/scipy/scipy/pull/11476">https://github.com/scipy/scipy/pull/11476</a>>`__: DOC: stats: Copy-edit the anderson docstring.<br>* `#11478 <<a href="https://github.com/scipy/scipy/pull/11478">https://github.com/scipy/scipy/pull/11478</a>>`__: ENH: avoid unnecessary array copies in matrix product<br>* `#11481 <<a href="https://github.com/scipy/scipy/pull/11481">https://github.com/scipy/scipy/pull/11481</a>>`__: BUG: Make special.hyperu return nan if any argument is nan<br>* `#11483 <<a href="https://github.com/scipy/scipy/pull/11483">https://github.com/scipy/scipy/pull/11483</a>>`__: BUG: Fixed \`_kpp\` initialization on \`scipy.cluster.vq\`, closing...<br>* `#11485 <<a href="https://github.com/scipy/scipy/pull/11485">https://github.com/scipy/scipy/pull/11485</a>>`__: ENH: Update docstring of class KrylovJacobian to fix #2744<br>* `#11486 <<a href="https://github.com/scipy/scipy/pull/11486">https://github.com/scipy/scipy/pull/11486</a>>`__: BUG: make special.eval_hermite return nan if second argument...<br>* `#11487 <<a href="https://github.com/scipy/scipy/pull/11487">https://github.com/scipy/scipy/pull/11487</a>>`__: ENH: improve docstring of correlate and correlate2d to fix #1968<br>* `#11488 <<a href="https://github.com/scipy/scipy/pull/11488">https://github.com/scipy/scipy/pull/11488</a>>`__: FIX: change "func -> fun" of scipy.optimize _root.py to solve...<br>* `#11489 <<a href="https://github.com/scipy/scipy/pull/11489">https://github.com/scipy/scipy/pull/11489</a>>`__: BUG: fixes typo introduced in PR #11253 in stats.mstats.kendalltau()<br>* `#11490 <<a href="https://github.com/scipy/scipy/pull/11490">https://github.com/scipy/scipy/pull/11490</a>>`__: DOC: fix typo in scipy/io/matlab/mio4.py<br>* `#11495 <<a href="https://github.com/scipy/scipy/pull/11495">https://github.com/scipy/scipy/pull/11495</a>>`__: MAINT: refactor slsqp to fix issue in callback function<br>* `#11498 <<a href="https://github.com/scipy/scipy/pull/11498">https://github.com/scipy/scipy/pull/11498</a>>`__: [DOC] mention graph cuts in maximum flow docstring<br>* `#11499 <<a href="https://github.com/scipy/scipy/pull/11499">https://github.com/scipy/scipy/pull/11499</a>>`__: DOC: Improve documentation of scipy.signal.signaltools.wiener<br>* `#11506 <<a href="https://github.com/scipy/scipy/pull/11506">https://github.com/scipy/scipy/pull/11506</a>>`__: DOC: Fix typo in documentation of scipy.stats.morestats<br>* `#11508 <<a href="https://github.com/scipy/scipy/pull/11508">https://github.com/scipy/scipy/pull/11508</a>>`__: ENH: avoid copy on sparse __init__ when dtype is given<br>* `#11509 <<a href="https://github.com/scipy/scipy/pull/11509">https://github.com/scipy/scipy/pull/11509</a>>`__: ENH: avoid unnecessary array copies in matrix product (again)<br>* `#11510 <<a href="https://github.com/scipy/scipy/pull/11510">https://github.com/scipy/scipy/pull/11510</a>>`__: [DOC] An ex. for creating arbitrary size tri-diagonal<br>* `#11511 <<a href="https://github.com/scipy/scipy/pull/11511">https://github.com/scipy/scipy/pull/11511</a>>`__: TST: pin numba for Travis/sparse<br>* `#11513 <<a href="https://github.com/scipy/scipy/pull/11513">https://github.com/scipy/scipy/pull/11513</a>>`__: TST: disable NumPy cache dir ppc64le<br>* `#11514 <<a href="https://github.com/scipy/scipy/pull/11514">https://github.com/scipy/scipy/pull/11514</a>>`__: BUG: make special.eval_genlaguerre return nan if passed nan<br>* `#11517 <<a href="https://github.com/scipy/scipy/pull/11517">https://github.com/scipy/scipy/pull/11517</a>>`__: ENH: improve sparse.lil.tocsr performance<br>* `#11519 <<a href="https://github.com/scipy/scipy/pull/11519">https://github.com/scipy/scipy/pull/11519</a>>`__: Fix fresnel documentation<br>* `#11520 <<a href="https://github.com/scipy/scipy/pull/11520">https://github.com/scipy/scipy/pull/11520</a>>`__: BUG: make special.eval_gegenbauer return nan if passed nan<br>* `#11524 <<a href="https://github.com/scipy/scipy/pull/11524">https://github.com/scipy/scipy/pull/11524</a>>`__: ENH: Cosine Sine Decomposition<br>* `#11526 <<a href="https://github.com/scipy/scipy/pull/11526">https://github.com/scipy/scipy/pull/11526</a>>`__: BUG: fix SLSQP max iteration setting to fix #4921<br>* `#11527 <<a href="https://github.com/scipy/scipy/pull/11527">https://github.com/scipy/scipy/pull/11527</a>>`__: ENH: improve docstring of weibull_min_gen and weibull_max_gen...<br>* `#11530 <<a href="https://github.com/scipy/scipy/pull/11530">https://github.com/scipy/scipy/pull/11530</a>>`__: MAINT: Removed 3 unused imports, 3 unused assignments from ndimage.<br>* `#11531 <<a href="https://github.com/scipy/scipy/pull/11531">https://github.com/scipy/scipy/pull/11531</a>>`__: DOC: fix typos in bdtr and bdtrc from gh PR 11045<br>* `#11532 <<a href="https://github.com/scipy/scipy/pull/11532">https://github.com/scipy/scipy/pull/11532</a>>`__: MAINT: Fixed several unused imports and unused assignments from...<br>* `#11533 <<a href="https://github.com/scipy/scipy/pull/11533">https://github.com/scipy/scipy/pull/11533</a>>`__: MAINT: Fixed about 100 unused imports, unused assignment warnings...<br>* `#11534 <<a href="https://github.com/scipy/scipy/pull/11534">https://github.com/scipy/scipy/pull/11534</a>>`__: FIX: Allow non-native byte order inputs to scipy.fft<br>* `#11535 <<a href="https://github.com/scipy/scipy/pull/11535">https://github.com/scipy/scipy/pull/11535</a>>`__: MAINT: Fixed several unused imports in _lib.<br>* `#11536 <<a href="https://github.com/scipy/scipy/pull/11536">https://github.com/scipy/scipy/pull/11536</a>>`__: MAINT: Fixed several unused imports and unused assignments in...<br>* `#11537 <<a href="https://github.com/scipy/scipy/pull/11537">https://github.com/scipy/scipy/pull/11537</a>>`__: MAINT: Removed an unused import in scipy/constants.<br>* `#11538 <<a href="https://github.com/scipy/scipy/pull/11538">https://github.com/scipy/scipy/pull/11538</a>>`__: MAINT: Fixed several unused imports in scipy/fft.<br>* `#11539 <<a href="https://github.com/scipy/scipy/pull/11539">https://github.com/scipy/scipy/pull/11539</a>>`__: MAINT: Fixed several unused imports and unused assignments in...<br>* `#11540 <<a href="https://github.com/scipy/scipy/pull/11540">https://github.com/scipy/scipy/pull/11540</a>>`__: MAINT: Fixed two unused imports in scipy/misc.<br>* `#11541 <<a href="https://github.com/scipy/scipy/pull/11541">https://github.com/scipy/scipy/pull/11541</a>>`__: MAINT: Fixed several unused imports and unused assignments in...<br>* `#11542 <<a href="https://github.com/scipy/scipy/pull/11542">https://github.com/scipy/scipy/pull/11542</a>>`__: MAINT: Fixed an unused import in scipy/odr.<br>* `#11543 <<a href="https://github.com/scipy/scipy/pull/11543">https://github.com/scipy/scipy/pull/11543</a>>`__: MAINT: Fixed several unused imports and unused assignments in...<br>* `#11544 <<a href="https://github.com/scipy/scipy/pull/11544">https://github.com/scipy/scipy/pull/11544</a>>`__: MAINT: Fixed unused imports and unused assignments in scipy/integrate.<br>* `#11545 <<a href="https://github.com/scipy/scipy/pull/11545">https://github.com/scipy/scipy/pull/11545</a>>`__: MAINT: Removed unused imports and fixed unused assignments in...<br>* `#11546 <<a href="https://github.com/scipy/scipy/pull/11546">https://github.com/scipy/scipy/pull/11546</a>>`__: MAINT: Removed unused imports; fixed unused assignments in scipy/signal.<br>* `#11547 <<a href="https://github.com/scipy/scipy/pull/11547">https://github.com/scipy/scipy/pull/11547</a>>`__: MAINT: Removed unused imports; fixed unused assignments in scipy/spatial<br>* `#11548 <<a href="https://github.com/scipy/scipy/pull/11548">https://github.com/scipy/scipy/pull/11548</a>>`__: MAINT: Removed unused imports; fixed unused assignments in scipy.sparse.<br>* `#11549 <<a href="https://github.com/scipy/scipy/pull/11549">https://github.com/scipy/scipy/pull/11549</a>>`__: MAINT: Replace xrange with range<br>* `#11560 <<a href="https://github.com/scipy/scipy/pull/11560">https://github.com/scipy/scipy/pull/11560</a>>`__: MAINT: stats: remove an _argcheck call<br>* `#11573 <<a href="https://github.com/scipy/scipy/pull/11573">https://github.com/scipy/scipy/pull/11573</a>>`__: MAINT: Removed unused imports; fixed unused assignments in scipy/stats.<br>* `#11574 <<a href="https://github.com/scipy/scipy/pull/11574">https://github.com/scipy/scipy/pull/11574</a>>`__: MAINT: Small change to \`optimize.nnls\` error messages.<br>* `#11575 <<a href="https://github.com/scipy/scipy/pull/11575">https://github.com/scipy/scipy/pull/11575</a>>`__: MAINT: Update sytrd/hetrd tests<br>* `#11582 <<a href="https://github.com/scipy/scipy/pull/11582">https://github.com/scipy/scipy/pull/11582</a>>`__: MAINT: fix typo in quadpack.py closes #11448<br>* `#11585 <<a href="https://github.com/scipy/scipy/pull/11585">https://github.com/scipy/scipy/pull/11585</a>>`__: TST: add openblas_support.py<br>* `#11587 <<a href="https://github.com/scipy/scipy/pull/11587">https://github.com/scipy/scipy/pull/11587</a>>`__: BUG: Differential evolution with LinearConstraint with sparse...<br>* `#11588 <<a href="https://github.com/scipy/scipy/pull/11588">https://github.com/scipy/scipy/pull/11588</a>>`__: MAINT: Fully display problem size in lsmr/lsqr.<br>* `#11589 <<a href="https://github.com/scipy/scipy/pull/11589">https://github.com/scipy/scipy/pull/11589</a>>`__: MAINT: Remove Python 2 workarounds<br>* `#11590 <<a href="https://github.com/scipy/scipy/pull/11590">https://github.com/scipy/scipy/pull/11590</a>>`__: MAINT: Remove Python2 module init<br>* `#11605 <<a href="https://github.com/scipy/scipy/pull/11605">https://github.com/scipy/scipy/pull/11605</a>>`__: Standardization of bounds in _linprog_util.py<br>* `#11608 <<a href="https://github.com/scipy/scipy/pull/11608">https://github.com/scipy/scipy/pull/11608</a>>`__: BUG: fix use of is in DE callback<br>* `#11614 <<a href="https://github.com/scipy/scipy/pull/11614">https://github.com/scipy/scipy/pull/11614</a>>`__: TST, MAINT: TestCtypesQuad skip with pytest<br>* `#11619 <<a href="https://github.com/scipy/scipy/pull/11619">https://github.com/scipy/scipy/pull/11619</a>>`__: ENH: add nan_policy argument and functionality to stats.mstats.winsorize<br>* `#11621 <<a href="https://github.com/scipy/scipy/pull/11621">https://github.com/scipy/scipy/pull/11621</a>>`__: MAINT: Cleanup uses of PY_VERSION_HEX, NPY_PY3K in ndimage<br>* `#11622 <<a href="https://github.com/scipy/scipy/pull/11622">https://github.com/scipy/scipy/pull/11622</a>>`__: MAINT: Cleanup uses of PY_VERSION_HEX, NPY_PY3K in sparse<br>* `#11623 <<a href="https://github.com/scipy/scipy/pull/11623">https://github.com/scipy/scipy/pull/11623</a>>`__: MAINT: Remove unnecessary 'from __future__ import ...' statements<br>* `#11626 <<a href="https://github.com/scipy/scipy/pull/11626">https://github.com/scipy/scipy/pull/11626</a>>`__: MAINT: Cleanup uses of PY_VERSION_HEX<br>* `#11627 <<a href="https://github.com/scipy/scipy/pull/11627">https://github.com/scipy/scipy/pull/11627</a>>`__: ENH: add analytic formula for normal moments<br>* `#11628 <<a href="https://github.com/scipy/scipy/pull/11628">https://github.com/scipy/scipy/pull/11628</a>>`__: MAINT, TST: adjust azure for matplotlib release<br>* `#11631 <<a href="https://github.com/scipy/scipy/pull/11631">https://github.com/scipy/scipy/pull/11631</a>>`__: Revert to old behaviour for constant cost matrices in \`linear_sum_assignment\`<br>* `#11632 <<a href="https://github.com/scipy/scipy/pull/11632">https://github.com/scipy/scipy/pull/11632</a>>`__: MAINT: Define ARRAY_ANYORDER with DEF instead of cdef<br>* `#11639 <<a href="https://github.com/scipy/scipy/pull/11639">https://github.com/scipy/scipy/pull/11639</a>>`__: BUG: interpolate/interp1d: fail gracefully on all-nan inputs<br>* `#11640 <<a href="https://github.com/scipy/scipy/pull/11640">https://github.com/scipy/scipy/pull/11640</a>>`__: MAINT: Fix BLAS3 trmm wrapper for "side" arg<br>* `#11642 <<a href="https://github.com/scipy/scipy/pull/11642">https://github.com/scipy/scipy/pull/11642</a>>`__: TST, MAINT: remove dead code in Travis CI<br>* `#11643 <<a href="https://github.com/scipy/scipy/pull/11643">https://github.com/scipy/scipy/pull/11643</a>>`__: MAINT: fix conversion in binom_test<br>* `#11645 <<a href="https://github.com/scipy/scipy/pull/11645">https://github.com/scipy/scipy/pull/11645</a>>`__: MAINT: Assorted clean up.<br>* `#11646 <<a href="https://github.com/scipy/scipy/pull/11646">https://github.com/scipy/scipy/pull/11646</a>>`__: MAINT: Remove unnecessary 'from __future__ import ...' statements<br>* `#11647 <<a href="https://github.com/scipy/scipy/pull/11647">https://github.com/scipy/scipy/pull/11647</a>>`__: DOC: document return_all arguments<br>* `#11648 <<a href="https://github.com/scipy/scipy/pull/11648">https://github.com/scipy/scipy/pull/11648</a>>`__: Perform geometric slerp in quaternion space<br>* `#11651 <<a href="https://github.com/scipy/scipy/pull/11651">https://github.com/scipy/scipy/pull/11651</a>>`__: DOC: Update paper URL in lambertw documentation<br>* `#11653 <<a href="https://github.com/scipy/scipy/pull/11653">https://github.com/scipy/scipy/pull/11653</a>>`__: PERF: Switch to C++ STL std::nth_element<br>* `#11655 <<a href="https://github.com/scipy/scipy/pull/11655">https://github.com/scipy/scipy/pull/11655</a>>`__: MAINT: Remove Python2 cStringStream<br>* `#11657 <<a href="https://github.com/scipy/scipy/pull/11657">https://github.com/scipy/scipy/pull/11657</a>>`__: ENH: Add wrapper for ?pttrf/?pttrs<br>* `#11664 <<a href="https://github.com/scipy/scipy/pull/11664">https://github.com/scipy/scipy/pull/11664</a>>`__: ENH: Add wrapper for ?gejsv<br>* `#11665 <<a href="https://github.com/scipy/scipy/pull/11665">https://github.com/scipy/scipy/pull/11665</a>>`__: ENH: Add wrapper for ?pteqr<br>* `#11667 <<a href="https://github.com/scipy/scipy/pull/11667">https://github.com/scipy/scipy/pull/11667</a>>`__: BUG: Non-central Fisher distribution (fix nan-values when nc=0)<br>* `#11668 <<a href="https://github.com/scipy/scipy/pull/11668">https://github.com/scipy/scipy/pull/11668</a>>`__: ENH: Add wrapper for ?gtsvx<br>* `#11671 <<a href="https://github.com/scipy/scipy/pull/11671">https://github.com/scipy/scipy/pull/11671</a>>`__: TST, CI: restore Azure temporarily<br>* `#11672 <<a href="https://github.com/scipy/scipy/pull/11672">https://github.com/scipy/scipy/pull/11672</a>>`__: Add warning to medfilt when array size < kernel_size<br>* `#11674 <<a href="https://github.com/scipy/scipy/pull/11674">https://github.com/scipy/scipy/pull/11674</a>>`__: TST: bump test precision for two np.dot related linalg tests.<br>* `#11675 <<a href="https://github.com/scipy/scipy/pull/11675">https://github.com/scipy/scipy/pull/11675</a>>`__: MAINT: pycodestyle clean-up<br>* `#11677 <<a href="https://github.com/scipy/scipy/pull/11677">https://github.com/scipy/scipy/pull/11677</a>>`__: ENH: Add wrapper for ?ptsvx<br>* `#11679 <<a href="https://github.com/scipy/scipy/pull/11679">https://github.com/scipy/scipy/pull/11679</a>>`__: BENCH: cKDTree benchmarks added: balanced/unbalanced tree (related...<br>* `#11680 <<a href="https://github.com/scipy/scipy/pull/11680">https://github.com/scipy/scipy/pull/11680</a>>`__: MAINT: rng_integers allows RandomState.randint or Generator.integers<br>* `#11683 <<a href="https://github.com/scipy/scipy/pull/11683">https://github.com/scipy/scipy/pull/11683</a>>`__: BUG: fix mode='mirror' on length 1 axes<br>* `#11684 <<a href="https://github.com/scipy/scipy/pull/11684">https://github.com/scipy/scipy/pull/11684</a>>`__: BUG: fix scipy.special.voigt_profile<br>* `#11687 <<a href="https://github.com/scipy/scipy/pull/11687">https://github.com/scipy/scipy/pull/11687</a>>`__: MAINT: sparse.linalg: avoid importing from \`np.core\`<br>* `#11688 <<a href="https://github.com/scipy/scipy/pull/11688">https://github.com/scipy/scipy/pull/11688</a>>`__: ENH: mypy: get specific about ignoring missing imports<br>* `#11690 <<a href="https://github.com/scipy/scipy/pull/11690">https://github.com/scipy/scipy/pull/11690</a>>`__: MAINT: mypy: fix errors about incompatible types in lists<br>* `#11692 <<a href="https://github.com/scipy/scipy/pull/11692">https://github.com/scipy/scipy/pull/11692</a>>`__: MAINT: mypy: fix remaining type errors<br>* `#11694 <<a href="https://github.com/scipy/scipy/pull/11694">https://github.com/scipy/scipy/pull/11694</a>>`__: TST, MAINT: bump to OpenBLAS 0.3.9 stable, raise tol for Win...<br>* `#11697 <<a href="https://github.com/scipy/scipy/pull/11697">https://github.com/scipy/scipy/pull/11697</a>>`__: DOC: fix pdf of norminvgauss in scipy.stats<br>* `#11701 <<a href="https://github.com/scipy/scipy/pull/11701">https://github.com/scipy/scipy/pull/11701</a>>`__: MAINT: special: add rudimentary types for \`_ufuncs\` extension...<br>* `#11702 <<a href="https://github.com/scipy/scipy/pull/11702">https://github.com/scipy/scipy/pull/11702</a>>`__: BUG: Fixed a post-merge bug for eigh()<br>* `#11703 <<a href="https://github.com/scipy/scipy/pull/11703">https://github.com/scipy/scipy/pull/11703</a>>`__: Improves docstring with consistent L2-norm<br>* `#11705 <<a href="https://github.com/scipy/scipy/pull/11705">https://github.com/scipy/scipy/pull/11705</a>>`__: DOC: Slerp the SphericalVoronoi docstring<br>* `#11706 <<a href="https://github.com/scipy/scipy/pull/11706">https://github.com/scipy/scipy/pull/11706</a>>`__: ENH: mypy: add \`--mypy\` option to \`runtests.py\`<br>* `#11710 <<a href="https://github.com/scipy/scipy/pull/11710">https://github.com/scipy/scipy/pull/11710</a>>`__: ENH: Modified stats.kstest() to use the exact stats.kstwo.sf()...<br>* `#11715 <<a href="https://github.com/scipy/scipy/pull/11715">https://github.com/scipy/scipy/pull/11715</a>>`__: DOC: add .. versionadded:: to as_matrix/from_matrix in spatial/transf…<br>* `#11716 <<a href="https://github.com/scipy/scipy/pull/11716">https://github.com/scipy/scipy/pull/11716</a>>`__: BENCH: fix benchmark imports for \`\`optimize_linprog.py\`\`<br>* `#11721 <<a href="https://github.com/scipy/scipy/pull/11721">https://github.com/scipy/scipy/pull/11721</a>>`__: MAINT: io: Remove now-unnecessary \`# type: ignore\`<br>* `#11722 <<a href="https://github.com/scipy/scipy/pull/11722">https://github.com/scipy/scipy/pull/11722</a>>`__: MAINT: mypy: remove mpmath from the ratchet<br>* `#11726 <<a href="https://github.com/scipy/scipy/pull/11726">https://github.com/scipy/scipy/pull/11726</a>>`__: Handle constant input for scipy.stats.f_oneway<br>* `#11729 <<a href="https://github.com/scipy/scipy/pull/11729">https://github.com/scipy/scipy/pull/11729</a>>`__: BENCH: optimize: added infeasible benchmarks for linprog<br>* `#11731 <<a href="https://github.com/scipy/scipy/pull/11731">https://github.com/scipy/scipy/pull/11731</a>>`__: fix inaccurate information about Mac OS compiler (#11696)<br>* `#11733 <<a href="https://github.com/scipy/scipy/pull/11733">https://github.com/scipy/scipy/pull/11733</a>>`__: Fix inaccurate docstring example of HalfspaceIntersection<br>* `#11734 <<a href="https://github.com/scipy/scipy/pull/11734">https://github.com/scipy/scipy/pull/11734</a>>`__: Doc: fix inaccurate docstring of SmoothBivariateSpline.<br>* `#11735 <<a href="https://github.com/scipy/scipy/pull/11735">https://github.com/scipy/scipy/pull/11735</a>>`__: Bug: stats: fix wrong shape from median_absolute_deviation for...<br>* `#11736 <<a href="https://github.com/scipy/scipy/pull/11736">https://github.com/scipy/scipy/pull/11736</a>>`__: ENH: add input validations and its tests for FITPACK in fitpack2.py<br>* `#11737 <<a href="https://github.com/scipy/scipy/pull/11737">https://github.com/scipy/scipy/pull/11737</a>>`__: BUG: Prevent crashes due to MKL bug in ?heevr<br>* `#11739 <<a href="https://github.com/scipy/scipy/pull/11739">https://github.com/scipy/scipy/pull/11739</a>>`__: MAINT: special: add type stubs for \`_test_round.pyx\`<br>* `#11740 <<a href="https://github.com/scipy/scipy/pull/11740">https://github.com/scipy/scipy/pull/11740</a>>`__: MAINT: special: remove unused specfun f2py wrappers<br>* `#11741 <<a href="https://github.com/scipy/scipy/pull/11741">https://github.com/scipy/scipy/pull/11741</a>>`__: BUG: fix small tolerances handling for minpack and add a test.<br>* `#11743 <<a href="https://github.com/scipy/scipy/pull/11743">https://github.com/scipy/scipy/pull/11743</a>>`__: Doc: fix docstring of rfft, rfft2, rfftn, irfft, irfft2, irfftn...<br>* `#11744 <<a href="https://github.com/scipy/scipy/pull/11744">https://github.com/scipy/scipy/pull/11744</a>>`__: MAINT: Remove unused py3k.h code<br>* `#11745 <<a href="https://github.com/scipy/scipy/pull/11745">https://github.com/scipy/scipy/pull/11745</a>>`__: DOC: stats: Clean up ncf documentation.<br>* `#11748 <<a href="https://github.com/scipy/scipy/pull/11748">https://github.com/scipy/scipy/pull/11748</a>>`__: MAINT: special: type \`cython_special\` as \`Any\`<br>* `#11750 <<a href="https://github.com/scipy/scipy/pull/11750">https://github.com/scipy/scipy/pull/11750</a>>`__: MAINT: type hints for \`_spherical_voronoi\`<br>* `#11752 <<a href="https://github.com/scipy/scipy/pull/11752">https://github.com/scipy/scipy/pull/11752</a>>`__: DOC: fix docstring of scipy.optimize.least_squares<br>* `#11753 <<a href="https://github.com/scipy/scipy/pull/11753">https://github.com/scipy/scipy/pull/11753</a>>`__: ENH: add input validation for dendrogram and a test.<br>* `#11755 <<a href="https://github.com/scipy/scipy/pull/11755">https://github.com/scipy/scipy/pull/11755</a>>`__: MAINT: Replace uses of tostring with tobytes<br>* `#11757 <<a href="https://github.com/scipy/scipy/pull/11757">https://github.com/scipy/scipy/pull/11757</a>>`__: ENH: improve binned_statistics_2d performance.<br>* `#11759 <<a href="https://github.com/scipy/scipy/pull/11759">https://github.com/scipy/scipy/pull/11759</a>>`__: ENH: optimize: add HiGHS methods to linprog<br>* `#11760 <<a href="https://github.com/scipy/scipy/pull/11760">https://github.com/scipy/scipy/pull/11760</a>>`__: MAINT: Remove FileStream replaced by GenericStream<br>* `#11761 <<a href="https://github.com/scipy/scipy/pull/11761">https://github.com/scipy/scipy/pull/11761</a>>`__: MAINT: Replace npy_3kcompat.h shims<br>* `#11765 <<a href="https://github.com/scipy/scipy/pull/11765">https://github.com/scipy/scipy/pull/11765</a>>`__: TST: Speedup test_pascal which is VERY slow on Azure<br>* `#11766 <<a href="https://github.com/scipy/scipy/pull/11766">https://github.com/scipy/scipy/pull/11766</a>>`__: TST: speed up differential_evolution L8 test<br>* `#11767 <<a href="https://github.com/scipy/scipy/pull/11767">https://github.com/scipy/scipy/pull/11767</a>>`__: Change comment in continuous rv gamma fit function<br>* `#11776 <<a href="https://github.com/scipy/scipy/pull/11776">https://github.com/scipy/scipy/pull/11776</a>>`__: Add domain option for resample.<br>* `#11784 <<a href="https://github.com/scipy/scipy/pull/11784">https://github.com/scipy/scipy/pull/11784</a>>`__: BUG: Fixed calculation of nonzero elements in scipy.sparse.random<br>* `#11786 <<a href="https://github.com/scipy/scipy/pull/11786">https://github.com/scipy/scipy/pull/11786</a>>`__: ENH: stats: add axis keyword argument to scipy.stats.rankdata<br>* `#11789 <<a href="https://github.com/scipy/scipy/pull/11789">https://github.com/scipy/scipy/pull/11789</a>>`__: Doc: fix docstring of scipy.spatial.chebyshev<br>* `#11792 <<a href="https://github.com/scipy/scipy/pull/11792">https://github.com/scipy/scipy/pull/11792</a>>`__: DOC: dev: add guidelines for developing public Cython APIs<br>* `#11794 <<a href="https://github.com/scipy/scipy/pull/11794">https://github.com/scipy/scipy/pull/11794</a>>`__: MAINT: add comments explaining a problem in cython_optimize organization<br>* `#11796 <<a href="https://github.com/scipy/scipy/pull/11796">https://github.com/scipy/scipy/pull/11796</a>>`__: DOC: add a note about precision losing in csgraph.minimum_spanning_tree...<br>* `#11797 <<a href="https://github.com/scipy/scipy/pull/11797">https://github.com/scipy/scipy/pull/11797</a>>`__: ENH: Allow negative \`axis\` in \`interpolate.BSpline\`. Also...<br>* `#11798 <<a href="https://github.com/scipy/scipy/pull/11798">https://github.com/scipy/scipy/pull/11798</a>>`__: Add simplify_cells parameter to scipy.io.loadmat<br>* `#11801 <<a href="https://github.com/scipy/scipy/pull/11801">https://github.com/scipy/scipy/pull/11801</a>>`__: MAINT, DOC: minor changes of ratio-of-uniforms in scipy.stats<br>* `#11802 <<a href="https://github.com/scipy/scipy/pull/11802">https://github.com/scipy/scipy/pull/11802</a>>`__: BUG: fix scipy.odr to handle multidimensional independent and...<br>* `#11803 <<a href="https://github.com/scipy/scipy/pull/11803">https://github.com/scipy/scipy/pull/11803</a>>`__: scipy.stats.trapz: Use analytic formulas for stats and entropy.<br>* `#11808 <<a href="https://github.com/scipy/scipy/pull/11808">https://github.com/scipy/scipy/pull/11808</a>>`__: DOC: add Examples in the scipy.interpolate.interpn docstring.<br>* `#11809 <<a href="https://github.com/scipy/scipy/pull/11809">https://github.com/scipy/scipy/pull/11809</a>>`__: Duplicate entries are added together in csr_matrix constructor<br>* `#11813 <<a href="https://github.com/scipy/scipy/pull/11813">https://github.com/scipy/scipy/pull/11813</a>>`__: MAINT: bump pyflakes to version 2.1.1<br>* `#11814 <<a href="https://github.com/scipy/scipy/pull/11814">https://github.com/scipy/scipy/pull/11814</a>>`__: BUG: scipy.sparse.csr doctest failing with incorrect output value<br>* `#11817 <<a href="https://github.com/scipy/scipy/pull/11817">https://github.com/scipy/scipy/pull/11817</a>>`__: DOC: add Examples in the scipy.optimize.leastsq docstring<br>* `#11820 <<a href="https://github.com/scipy/scipy/pull/11820">https://github.com/scipy/scipy/pull/11820</a>>`__: ENH: Raise an error on incorrect bounds format in optimize.fmin_l_bfgs_b<br>* `#11822 <<a href="https://github.com/scipy/scipy/pull/11822">https://github.com/scipy/scipy/pull/11822</a>>`__: CI: add github actions for macOS<br>* `#11824 <<a href="https://github.com/scipy/scipy/pull/11824">https://github.com/scipy/scipy/pull/11824</a>>`__: DOC: add Examples in scipy.optimize.line_search docstring (line_search_wolfe2)<br>* `#11830 <<a href="https://github.com/scipy/scipy/pull/11830">https://github.com/scipy/scipy/pull/11830</a>>`__: TST: Always use fork for multiprocessing in fft tests<br>* `#11831 <<a href="https://github.com/scipy/scipy/pull/11831">https://github.com/scipy/scipy/pull/11831</a>>`__: DOC: add Examples and Returns in scipy.misc.central_diff_weights...<br>* `#11832 <<a href="https://github.com/scipy/scipy/pull/11832">https://github.com/scipy/scipy/pull/11832</a>>`__: DOC: stats: Some small corrections to a couple docstrings.<br>* `#11833 <<a href="https://github.com/scipy/scipy/pull/11833">https://github.com/scipy/scipy/pull/11833</a>>`__: BUG: Fix compiler_name when there are paths used in flags<br>* `#11836 <<a href="https://github.com/scipy/scipy/pull/11836">https://github.com/scipy/scipy/pull/11836</a>>`__: MAINT: re-introduce multiprocessing tests on Python3.8<br>* `#11837 <<a href="https://github.com/scipy/scipy/pull/11837">https://github.com/scipy/scipy/pull/11837</a>>`__: Doc: add Examples in scipy.optimize.fsolve docstring<br>* `#11838 <<a href="https://github.com/scipy/scipy/pull/11838">https://github.com/scipy/scipy/pull/11838</a>>`__: Doc: add Examples in scipy.sparse.linalg.minres docstring<br>* `#11840 <<a href="https://github.com/scipy/scipy/pull/11840">https://github.com/scipy/scipy/pull/11840</a>>`__: BUG: sparse.linalg: fix overflow in expm intermediate computation<br>* `#11842 <<a href="https://github.com/scipy/scipy/pull/11842">https://github.com/scipy/scipy/pull/11842</a>>`__: BLD: fix build with gfortran 10<br>* `#11843 <<a href="https://github.com/scipy/scipy/pull/11843">https://github.com/scipy/scipy/pull/11843</a>>`__: MAINT: Simplify floats in constants.py<br>* `#11847 <<a href="https://github.com/scipy/scipy/pull/11847">https://github.com/scipy/scipy/pull/11847</a>>`__: DOC: add a tutorial of scipy.optimize.linprog<br>* `#11849 <<a href="https://github.com/scipy/scipy/pull/11849">https://github.com/scipy/scipy/pull/11849</a>>`__: ENH: speed up geninvgauss by using cython<br>* `#11852 <<a href="https://github.com/scipy/scipy/pull/11852">https://github.com/scipy/scipy/pull/11852</a>>`__: CI: remove osx from travisCI<br>* `#11857 <<a href="https://github.com/scipy/scipy/pull/11857">https://github.com/scipy/scipy/pull/11857</a>>`__: BUG: Change parameter fc of gausspulse to float.<br>* `#11861 <<a href="https://github.com/scipy/scipy/pull/11861">https://github.com/scipy/scipy/pull/11861</a>>`__: order = degree + 1 for splines<br>* `#11863 <<a href="https://github.com/scipy/scipy/pull/11863">https://github.com/scipy/scipy/pull/11863</a>>`__: Make g77 ABI wrapper work with gfortran ABI lapack<br>* `#11866 <<a href="https://github.com/scipy/scipy/pull/11866">https://github.com/scipy/scipy/pull/11866</a>>`__: MAINT: add type ignores to sympy and matplotlib imports<br>* `#11867 <<a href="https://github.com/scipy/scipy/pull/11867">https://github.com/scipy/scipy/pull/11867</a>>`__: CI: Add arm64 in travis-ci<br>* `#11869 <<a href="https://github.com/scipy/scipy/pull/11869">https://github.com/scipy/scipy/pull/11869</a>>`__: DOC: signal: Add an example to the lsim2 docstring.<br>* `#11870 <<a href="https://github.com/scipy/scipy/pull/11870">https://github.com/scipy/scipy/pull/11870</a>>`__: DOC: signal: Use impulse instead of impulse2 in the impulse example...<br>* `#11871 <<a href="https://github.com/scipy/scipy/pull/11871">https://github.com/scipy/scipy/pull/11871</a>>`__: ENH: type ufuncs in special as ufuncs instead of Any<br>* `#11872 <<a href="https://github.com/scipy/scipy/pull/11872">https://github.com/scipy/scipy/pull/11872</a>>`__: BUG: avoid recomputing in scipy.optimize.optimize.MemoizeJac<br>* `#11873 <<a href="https://github.com/scipy/scipy/pull/11873">https://github.com/scipy/scipy/pull/11873</a>>`__: DOC: signal: Fix ODE in impulse and impulse2 docstrings.<br>* `#11874 <<a href="https://github.com/scipy/scipy/pull/11874">https://github.com/scipy/scipy/pull/11874</a>>`__: DOC: add Examples of docstring for scipy.interpolate.approximate_taylor_polynomial<br>* `#11878 <<a href="https://github.com/scipy/scipy/pull/11878">https://github.com/scipy/scipy/pull/11878</a>>`__: DOC: fixed a typo under scipy/integrate/quadrature.py<br>* `#11879 <<a href="https://github.com/scipy/scipy/pull/11879">https://github.com/scipy/scipy/pull/11879</a>>`__: BUG: Fix index arrays overflow in sparse.kron<br>* `#11880 <<a href="https://github.com/scipy/scipy/pull/11880">https://github.com/scipy/scipy/pull/11880</a>>`__: DOC: stats: Add Examples for bartlett, fligner, levene.<br>* `#11881 <<a href="https://github.com/scipy/scipy/pull/11881">https://github.com/scipy/scipy/pull/11881</a>>`__: MAINT: normalise numpy-->np in optimize.py<br>* `#11882 <<a href="https://github.com/scipy/scipy/pull/11882">https://github.com/scipy/scipy/pull/11882</a>>`__: DOC: add Examples for scipy.io.readsav docstring.<br>* `#11883 <<a href="https://github.com/scipy/scipy/pull/11883">https://github.com/scipy/scipy/pull/11883</a>>`__: DOC: add Returns and Examples for scipy.ndimage.correlate() docstring<br>* `#11885 <<a href="https://github.com/scipy/scipy/pull/11885">https://github.com/scipy/scipy/pull/11885</a>>`__: BUG: stats: Handle multidimensional arrays in f_oneway, and more.<br>* `#11889 <<a href="https://github.com/scipy/scipy/pull/11889">https://github.com/scipy/scipy/pull/11889</a>>`__: DOC: signal: Unify lsim and lsim2 examples.<br>* `#11896 <<a href="https://github.com/scipy/scipy/pull/11896">https://github.com/scipy/scipy/pull/11896</a>>`__: BUG: stats: Fix handling of size 0 inputs for ttest_rel and ttest_ind.<br>* `#11897 <<a href="https://github.com/scipy/scipy/pull/11897">https://github.com/scipy/scipy/pull/11897</a>>`__: DOC: Remove misleading default values from fit method<br>* `#11898 <<a href="https://github.com/scipy/scipy/pull/11898">https://github.com/scipy/scipy/pull/11898</a>>`__: MAINT: LinearVectorFunction.J is ndarray closes #11886<br>* `#11902 <<a href="https://github.com/scipy/scipy/pull/11902">https://github.com/scipy/scipy/pull/11902</a>>`__: BUG: linalg: test_heequb failure<br>* `#11904 <<a href="https://github.com/scipy/scipy/pull/11904">https://github.com/scipy/scipy/pull/11904</a>>`__: fix real-to-real transforms for complex inputs and overwrite_x=True<br>* `#11906 <<a href="https://github.com/scipy/scipy/pull/11906">https://github.com/scipy/scipy/pull/11906</a>>`__: DOC: stats: fix error caused by trapz docstring<br>* `#11907 <<a href="https://github.com/scipy/scipy/pull/11907">https://github.com/scipy/scipy/pull/11907</a>>`__: BUG: stats: fixed SEGFAULT from Issue #9710<br>* `#11912 <<a href="https://github.com/scipy/scipy/pull/11912">https://github.com/scipy/scipy/pull/11912</a>>`__: ENH: Respect matplotlib color palette with hierarchy/dendrogram.<br>* `#11914 <<a href="https://github.com/scipy/scipy/pull/11914">https://github.com/scipy/scipy/pull/11914</a>>`__: DOC: refine doc for spatial.distance.squareform<br>* `#11915 <<a href="https://github.com/scipy/scipy/pull/11915">https://github.com/scipy/scipy/pull/11915</a>>`__: ENH: Ndim linear operator<br>* `#11919 <<a href="https://github.com/scipy/scipy/pull/11919">https://github.com/scipy/scipy/pull/11919</a>>`__: ENH: expose "window_size" parameter in find_peaks_cwt()<br>* `#11920 <<a href="https://github.com/scipy/scipy/pull/11920">https://github.com/scipy/scipy/pull/11920</a>>`__: DOC: explain M, diffev<br>* `#11923 <<a href="https://github.com/scipy/scipy/pull/11923">https://github.com/scipy/scipy/pull/11923</a>>`__: CI: macOS install swig closes #11922<br>* `#11924 <<a href="https://github.com/scipy/scipy/pull/11924">https://github.com/scipy/scipy/pull/11924</a>>`__: DOC: add Examples for scipy.optimize.bracket() docstring<br>* `#11930 <<a href="https://github.com/scipy/scipy/pull/11930">https://github.com/scipy/scipy/pull/11930</a>>`__: DOC: add Examples and clean up for signal.qspline1d and signal.qspline_eval...<br>* `#11931 <<a href="https://github.com/scipy/scipy/pull/11931">https://github.com/scipy/scipy/pull/11931</a>>`__: DOC: add Examples for sparse.linalg.bicg docstring.<br>* `#11933 <<a href="https://github.com/scipy/scipy/pull/11933">https://github.com/scipy/scipy/pull/11933</a>>`__: DOC: Add original reference for Yao-Liu objective functions<br>* `#11934 <<a href="https://github.com/scipy/scipy/pull/11934">https://github.com/scipy/scipy/pull/11934</a>>`__: DOC, MAINT: mailmap update<br>* `#11935 <<a href="https://github.com/scipy/scipy/pull/11935">https://github.com/scipy/scipy/pull/11935</a>>`__: DOC: make scipy.stats.mode documentation reflect that the function...<br>* `#11936 <<a href="https://github.com/scipy/scipy/pull/11936">https://github.com/scipy/scipy/pull/11936</a>>`__: ENH: special: add type stubs for \`orthogonal.py\`<br>* `#11937 <<a href="https://github.com/scipy/scipy/pull/11937">https://github.com/scipy/scipy/pull/11937</a>>`__: DOC: Add docstring examples to fft2, ifft2, io.savemat<br>* `#11938 <<a href="https://github.com/scipy/scipy/pull/11938">https://github.com/scipy/scipy/pull/11938</a>>`__: MAINT: add helper function for deprecating Cython API functions<br>* `#11942 <<a href="https://github.com/scipy/scipy/pull/11942">https://github.com/scipy/scipy/pull/11942</a>>`__: MAINT: ignore conditional import in _lib/_util<br>* `#11943 <<a href="https://github.com/scipy/scipy/pull/11943">https://github.com/scipy/scipy/pull/11943</a>>`__: MAINT: special: add types for geterr/seterr/errstate<br>* `#11946 <<a href="https://github.com/scipy/scipy/pull/11946">https://github.com/scipy/scipy/pull/11946</a>>`__: MAINT: add py.typed marker<br>* `#11950 <<a href="https://github.com/scipy/scipy/pull/11950">https://github.com/scipy/scipy/pull/11950</a>>`__: TST:MAINT: separated and stabilized heequb tests<br>* `#11952 <<a href="https://github.com/scipy/scipy/pull/11952">https://github.com/scipy/scipy/pull/11952</a>>`__: DOC: update toolchain roadmap for py38, C99, C++11/14<br>* `#11957 <<a href="https://github.com/scipy/scipy/pull/11957">https://github.com/scipy/scipy/pull/11957</a>>`__: MAINT: Use np.errstate context manager instead of np.seterr.<br>* `#11958 <<a href="https://github.com/scipy/scipy/pull/11958">https://github.com/scipy/scipy/pull/11958</a>>`__: MAINT: interpolate: Remove some trailing spaces.<br>* `#11960 <<a href="https://github.com/scipy/scipy/pull/11960">https://github.com/scipy/scipy/pull/11960</a>>`__: MAINT: Cleanup Python2 compatibility code<br>* `#11961 <<a href="https://github.com/scipy/scipy/pull/11961">https://github.com/scipy/scipy/pull/11961</a>>`__: MAINT: Remove numpy/npy_3kcompat.h from _superluobject.c<br>* `#11962 <<a href="https://github.com/scipy/scipy/pull/11962">https://github.com/scipy/scipy/pull/11962</a>>`__: DOC: Fix type of \`codes\` in docstring of \`_vq._vq()\`<br>* `#11964 <<a href="https://github.com/scipy/scipy/pull/11964">https://github.com/scipy/scipy/pull/11964</a>>`__: MAINT: Cleanup unused IS_PYPY<br>* `#11969 <<a href="https://github.com/scipy/scipy/pull/11969">https://github.com/scipy/scipy/pull/11969</a>>`__: DOC: add Examples and fix docstring for special.airye<br>* `#11970 <<a href="https://github.com/scipy/scipy/pull/11970">https://github.com/scipy/scipy/pull/11970</a>>`__: BUG: sparse: 'diagonal' of sparse matrices fixed to match numpy's...<br>* `#11974 <<a href="https://github.com/scipy/scipy/pull/11974">https://github.com/scipy/scipy/pull/11974</a>>`__: BUG: Reshape oaconvolve output even when no axes are convolved<br>* `#11976 <<a href="https://github.com/scipy/scipy/pull/11976">https://github.com/scipy/scipy/pull/11976</a>>`__: MAINT: add logo for github actions<br>* `#11977 <<a href="https://github.com/scipy/scipy/pull/11977">https://github.com/scipy/scipy/pull/11977</a>>`__: CI: test bleeding edge Python<br>* `#11979 <<a href="https://github.com/scipy/scipy/pull/11979">https://github.com/scipy/scipy/pull/11979</a>>`__: DOC: add Examples for stats.ranksums() docstring.<br>* `#11982 <<a href="https://github.com/scipy/scipy/pull/11982">https://github.com/scipy/scipy/pull/11982</a>>`__: Fix KMeans++ initialisation slowness<br>* `#11983 <<a href="https://github.com/scipy/scipy/pull/11983">https://github.com/scipy/scipy/pull/11983</a>>`__: DOC: add Examples for stats.mstats.argstoarray() docstring.<br>* `#11986 <<a href="https://github.com/scipy/scipy/pull/11986">https://github.com/scipy/scipy/pull/11986</a>>`__: Avoid bugs in ndimage when the output and input arrays overlap...<br>* `#11988 <<a href="https://github.com/scipy/scipy/pull/11988">https://github.com/scipy/scipy/pull/11988</a>>`__: ENH: Override fit method of Laplace distribution with Maximum...<br>* `#11993 <<a href="https://github.com/scipy/scipy/pull/11993">https://github.com/scipy/scipy/pull/11993</a>>`__: TST, CI: Azure Windows path fixups<br>* `#11995 <<a href="https://github.com/scipy/scipy/pull/11995">https://github.com/scipy/scipy/pull/11995</a>>`__: MAINT, CI: remove custom mingw Azure<br>* `#11996 <<a href="https://github.com/scipy/scipy/pull/11996">https://github.com/scipy/scipy/pull/11996</a>>`__: DOC: add Examples and fix pep warning for fft.set_global_backend...<br>* `#11997 <<a href="https://github.com/scipy/scipy/pull/11997">https://github.com/scipy/scipy/pull/11997</a>>`__: MAINT, CI: Azure OpenBLAS simplify<br>* `#11998 <<a href="https://github.com/scipy/scipy/pull/11998">https://github.com/scipy/scipy/pull/11998</a>>`__: BENCH: Run against current HEAD instead of master<br>* `#12001 <<a href="https://github.com/scipy/scipy/pull/12001">https://github.com/scipy/scipy/pull/12001</a>>`__: ENH: stats: Implement _logpdf for the maxwell distribution.<br>* `#12004 <<a href="https://github.com/scipy/scipy/pull/12004">https://github.com/scipy/scipy/pull/12004</a>>`__: DOC: add examples for integrate.quad_vec() and integrate.quad_explain()<br>* `#12005 <<a href="https://github.com/scipy/scipy/pull/12005">https://github.com/scipy/scipy/pull/12005</a>>`__: MAINT: Use helper functions in ?tbtrs tests<br>* `#12007 <<a href="https://github.com/scipy/scipy/pull/12007">https://github.com/scipy/scipy/pull/12007</a>>`__: MAINT: updated LICENSES_bundled for pybind11 and six<br>* `#12008 <<a href="https://github.com/scipy/scipy/pull/12008">https://github.com/scipy/scipy/pull/12008</a>>`__: DOC: roadmap update<br>* `#12009 <<a href="https://github.com/scipy/scipy/pull/12009">https://github.com/scipy/scipy/pull/12009</a>>`__: ENH: optimize: support 64-bit BLAS in lbfgsb<br>* `#12010 <<a href="https://github.com/scipy/scipy/pull/12010">https://github.com/scipy/scipy/pull/12010</a>>`__: ENH: sparse.linalg: support 64-bit BLAS in isolve<br>* `#12012 <<a href="https://github.com/scipy/scipy/pull/12012">https://github.com/scipy/scipy/pull/12012</a>>`__: DOC: add Examples for interpolate.barycentric_interpolate(),...<br>* `#12013 <<a href="https://github.com/scipy/scipy/pull/12013">https://github.com/scipy/scipy/pull/12013</a>>`__: MAINT: remove last uses of numpy.dual<br>* `#12014 <<a href="https://github.com/scipy/scipy/pull/12014">https://github.com/scipy/scipy/pull/12014</a>>`__: CI: print 10 slowest tests<br>* `#12020 <<a href="https://github.com/scipy/scipy/pull/12020">https://github.com/scipy/scipy/pull/12020</a>>`__: MAINT: Removed handling of circular input in SphericalVoronoi<br>* `#12022 <<a href="https://github.com/scipy/scipy/pull/12022">https://github.com/scipy/scipy/pull/12022</a>>`__: DOC : added default value of absolute_sigma to False in scipy.optimize.curve_fit docs<br>* `#12024 <<a href="https://github.com/scipy/scipy/pull/12024">https://github.com/scipy/scipy/pull/12024</a>>`__: DOC: add Examples for io.hb_read() and io.hb_write()<br>* `#12025 <<a href="https://github.com/scipy/scipy/pull/12025">https://github.com/scipy/scipy/pull/12025</a>>`__: MAINT: Remove numpy/npy_3kcompat.h from nd_image<br>* `#12028 <<a href="https://github.com/scipy/scipy/pull/12028">https://github.com/scipy/scipy/pull/12028</a>>`__: Spelling correction<br>* `#12030 <<a href="https://github.com/scipy/scipy/pull/12030">https://github.com/scipy/scipy/pull/12030</a>>`__: ENH: optimize/_trlib: support ILP64 blas/lapack<br>* `#12036 <<a href="https://github.com/scipy/scipy/pull/12036">https://github.com/scipy/scipy/pull/12036</a>>`__: MAINT: Add some generated C files .gitignore<br>* `#12038 <<a href="https://github.com/scipy/scipy/pull/12038">https://github.com/scipy/scipy/pull/12038</a>>`__: MAINT, CI: Travis rackcdn-><a href="http://conda.org">conda.org</a><br>* `#12039 <<a href="https://github.com/scipy/scipy/pull/12039">https://github.com/scipy/scipy/pull/12039</a>>`__: MAINT: signal: Lower the resolution of the plots in the chirp...<br>* `#12040 <<a href="https://github.com/scipy/scipy/pull/12040">https://github.com/scipy/scipy/pull/12040</a>>`__: DOC: add Examples for ndimage.spline_filter1d() and spline_filter()...<br>* `#12044 <<a href="https://github.com/scipy/scipy/pull/12044">https://github.com/scipy/scipy/pull/12044</a>>`__: MAINT: combine apt-get update and apt-get install into one RUN<br>* `#12045 <<a href="https://github.com/scipy/scipy/pull/12045">https://github.com/scipy/scipy/pull/12045</a>>`__: TST: Reduce size of test_diagonal_types to speed up tests<br>* `#12046 <<a href="https://github.com/scipy/scipy/pull/12046">https://github.com/scipy/scipy/pull/12046</a>>`__: MAINT: Remove unused npy_3kcompat.h<br>* `#12047 <<a href="https://github.com/scipy/scipy/pull/12047">https://github.com/scipy/scipy/pull/12047</a>>`__: MAINT: Cython 3.0 compat<br>* `#12050 <<a href="https://github.com/scipy/scipy/pull/12050">https://github.com/scipy/scipy/pull/12050</a>>`__: DOC: add download number badges of PyPI and conda-forge in README.rst<br>* `#12052 <<a href="https://github.com/scipy/scipy/pull/12052">https://github.com/scipy/scipy/pull/12052</a>>`__: DOC: add Examples odr.models.polynomial() and fix odr.odr docstring...<br>* `#12056 <<a href="https://github.com/scipy/scipy/pull/12056">https://github.com/scipy/scipy/pull/12056</a>>`__: ENH: Modifies shapiro to return a named tuple<br>* `#12057 <<a href="https://github.com/scipy/scipy/pull/12057">https://github.com/scipy/scipy/pull/12057</a>>`__: Adding my name into THANKS.txt<br>* `#12060 <<a href="https://github.com/scipy/scipy/pull/12060">https://github.com/scipy/scipy/pull/12060</a>>`__: TST: Reduce number of test_diagonal_types configs<br>* `#12062 <<a href="https://github.com/scipy/scipy/pull/12062">https://github.com/scipy/scipy/pull/12062</a>>`__: TST: Change dec.slow to pytest.mark.slow<br>* `#12068 <<a href="https://github.com/scipy/scipy/pull/12068">https://github.com/scipy/scipy/pull/12068</a>>`__: ENH: Modifies jarque_bera to return a named tuple<br>* `#12070 <<a href="https://github.com/scipy/scipy/pull/12070">https://github.com/scipy/scipy/pull/12070</a>>`__: MAINT, CI: appveyor rack-><a href="http://conda.org">conda.org</a><br>* `#12072 <<a href="https://github.com/scipy/scipy/pull/12072">https://github.com/scipy/scipy/pull/12072</a>>`__: TST: filter out factorial(float) deprecation warning<br>* `#12078 <<a href="https://github.com/scipy/scipy/pull/12078">https://github.com/scipy/scipy/pull/12078</a>>`__: TST: Skip test on colab with large memory alloc<br>* `#12079 <<a href="https://github.com/scipy/scipy/pull/12079">https://github.com/scipy/scipy/pull/12079</a>>`__: DOC: Remove Python2 reference from stats tutorial<br>* `#12081 <<a href="https://github.com/scipy/scipy/pull/12081">https://github.com/scipy/scipy/pull/12081</a>>`__: DOC: add Examples docstring for optimize.show_options()<br>* `#12084 <<a href="https://github.com/scipy/scipy/pull/12084">https://github.com/scipy/scipy/pull/12084</a>>`__: BUG: interpolate: fix BarycentricInterpolator with integer input...<br>* `#12089 <<a href="https://github.com/scipy/scipy/pull/12089">https://github.com/scipy/scipy/pull/12089</a>>`__: ENH: spatial/qhull: support ILP64 Lapack<br>* `#12090 <<a href="https://github.com/scipy/scipy/pull/12090">https://github.com/scipy/scipy/pull/12090</a>>`__: ENH: integrate: support ILP64 BLAS in odeint/vode/lsoda<br>* `#12091 <<a href="https://github.com/scipy/scipy/pull/12091">https://github.com/scipy/scipy/pull/12091</a>>`__: ENH: integrate: support ILP64 in quadpack<br>* `#12092 <<a href="https://github.com/scipy/scipy/pull/12092">https://github.com/scipy/scipy/pull/12092</a>>`__: BUG: Fix dropping dt in signal.StateSpace<br>* `#12093 <<a href="https://github.com/scipy/scipy/pull/12093">https://github.com/scipy/scipy/pull/12093</a>>`__: MAINT: Rollback python2.6 workaround<br>* `#12094 <<a href="https://github.com/scipy/scipy/pull/12094">https://github.com/scipy/scipy/pull/12094</a>>`__: MAINT: \`openblas_support\` hash checks<br>* `#12095 <<a href="https://github.com/scipy/scipy/pull/12095">https://github.com/scipy/scipy/pull/12095</a>>`__: MAINT: ndimage: change \`shares_memory\` to \`may_share_memory\`<br>* `#12098 <<a href="https://github.com/scipy/scipy/pull/12098">https://github.com/scipy/scipy/pull/12098</a>>`__: Doc: change 4 model instances of odr to be instances of \`Model\`...<br>* `#12101 <<a href="https://github.com/scipy/scipy/pull/12101">https://github.com/scipy/scipy/pull/12101</a>>`__: Removed more unused imports and assignments.<br>* `#12107 <<a href="https://github.com/scipy/scipy/pull/12107">https://github.com/scipy/scipy/pull/12107</a>>`__: ENH: Area calculation for 2D inputs in SphericalVoronoi<br>* `#12108 <<a href="https://github.com/scipy/scipy/pull/12108">https://github.com/scipy/scipy/pull/12108</a>>`__: MAINT: ensure attributes have correct data type in \`SphericalVoronoi\`<br>* `#12109 <<a href="https://github.com/scipy/scipy/pull/12109">https://github.com/scipy/scipy/pull/12109</a>>`__: degree is not order in splines<br>* `#12110 <<a href="https://github.com/scipy/scipy/pull/12110">https://github.com/scipy/scipy/pull/12110</a>>`__: ENH: More helpful/forgiving io.wavfile errors<br>* `#12117 <<a href="https://github.com/scipy/scipy/pull/12117">https://github.com/scipy/scipy/pull/12117</a>>`__: BUG: fix newline<br>* `#12123 <<a href="https://github.com/scipy/scipy/pull/12123">https://github.com/scipy/scipy/pull/12123</a>>`__: [MAINT] Fix error on PyData/Sparse import.<br>* `#12124 <<a href="https://github.com/scipy/scipy/pull/12124">https://github.com/scipy/scipy/pull/12124</a>>`__: TST: Always test matmul now that Python3.5+ is required<br>* `#12126 <<a href="https://github.com/scipy/scipy/pull/12126">https://github.com/scipy/scipy/pull/12126</a>>`__: TST: Cleanup unused matplotlib code.<br>* `#12127 <<a href="https://github.com/scipy/scipy/pull/12127">https://github.com/scipy/scipy/pull/12127</a>>`__: DOC: update docstrings of signal.cspline2d, qspline2d, sepfir2d<br>* `#12130 <<a href="https://github.com/scipy/scipy/pull/12130">https://github.com/scipy/scipy/pull/12130</a>>`__: MAINT: Fixing broken links with linkchecker<br>* `#12135 <<a href="https://github.com/scipy/scipy/pull/12135">https://github.com/scipy/scipy/pull/12135</a>>`__: ENH: linalg: Add the function convolution_matrix.<br>* `#12136 <<a href="https://github.com/scipy/scipy/pull/12136">https://github.com/scipy/scipy/pull/12136</a>>`__: MAINT: Cleanup np.poly1d hack<br>* `#12137 <<a href="https://github.com/scipy/scipy/pull/12137">https://github.com/scipy/scipy/pull/12137</a>>`__: TST, CI: reproduce wheels 32-bit setup<br>* `#12140 <<a href="https://github.com/scipy/scipy/pull/12140">https://github.com/scipy/scipy/pull/12140</a>>`__: TST: stats: add kstwo, ksone to slow tests.<br>* `#12141 <<a href="https://github.com/scipy/scipy/pull/12141">https://github.com/scipy/scipy/pull/12141</a>>`__: Support 64-bit integer size in Fitpack<br>* `#12151 <<a href="https://github.com/scipy/scipy/pull/12151">https://github.com/scipy/scipy/pull/12151</a>>`__: DOC: Correct Rosenbrock function sum<br>* `#12159 <<a href="https://github.com/scipy/scipy/pull/12159">https://github.com/scipy/scipy/pull/12159</a>>`__: BUG: Fix length calculation in upfirdn<br>* `#12160 <<a href="https://github.com/scipy/scipy/pull/12160">https://github.com/scipy/scipy/pull/12160</a>>`__: BUG: Fix M_PI<br>* `#12168 <<a href="https://github.com/scipy/scipy/pull/12168">https://github.com/scipy/scipy/pull/12168</a>>`__: DOC: add an obsolete version checking javascript to doc release...<br>* `#12171 <<a href="https://github.com/scipy/scipy/pull/12171">https://github.com/scipy/scipy/pull/12171</a>>`__: CI, MAINT: Azure OpenBLAS drive flip<br>* `#12172 <<a href="https://github.com/scipy/scipy/pull/12172">https://github.com/scipy/scipy/pull/12172</a>>`__: ENH: Bounds for the Powell minimization method<br>* `#12175 <<a href="https://github.com/scipy/scipy/pull/12175">https://github.com/scipy/scipy/pull/12175</a>>`__: BLD: support more Fortran compilers for ilp64 and macro expansion...<br>* `#12179 <<a href="https://github.com/scipy/scipy/pull/12179">https://github.com/scipy/scipy/pull/12179</a>>`__: BUG: stats: A few distributions didn't accept lists as arguments.<br>* `#12180 <<a href="https://github.com/scipy/scipy/pull/12180">https://github.com/scipy/scipy/pull/12180</a>>`__: MAINT: removed redundant import in SphericalVoronoi tests<br>* `#12181 <<a href="https://github.com/scipy/scipy/pull/12181">https://github.com/scipy/scipy/pull/12181</a>>`__: DOC: for versionwarning don't use $.getScript<br>* `#12182 <<a href="https://github.com/scipy/scipy/pull/12182">https://github.com/scipy/scipy/pull/12182</a>>`__: MAINT: random sampling on the hypersphere in SphericalVoronoi...<br>* `#12194 <<a href="https://github.com/scipy/scipy/pull/12194">https://github.com/scipy/scipy/pull/12194</a>>`__: MAINT: Module and example cleanups for doc build<br>* `#12202 <<a href="https://github.com/scipy/scipy/pull/12202">https://github.com/scipy/scipy/pull/12202</a>>`__: ENH: tool to DL release wheels from Anaconda<br>* `#12210 <<a href="https://github.com/scipy/scipy/pull/12210">https://github.com/scipy/scipy/pull/12210</a>>`__: Remove py.typed marker (at least for the release)<br>* `#12217 <<a href="https://github.com/scipy/scipy/pull/12217">https://github.com/scipy/scipy/pull/12217</a>>`__: BUG: stats: Fix handling of edge cases in median_abs_deviation.<br>* `#12223 <<a href="https://github.com/scipy/scipy/pull/12223">https://github.com/scipy/scipy/pull/12223</a>>`__: BUG: stats: wilcoxon returned p > 1 for certain inputs.<br>* `#12227 <<a href="https://github.com/scipy/scipy/pull/12227">https://github.com/scipy/scipy/pull/12227</a>>`__: BLD: Set macos min version when building rectangular_lsap<br>* `#12229 <<a href="https://github.com/scipy/scipy/pull/12229">https://github.com/scipy/scipy/pull/12229</a>>`__: MAINT: tools/gh_lists.py: fix http header case sensitivity issue<br>* `#12236 <<a href="https://github.com/scipy/scipy/pull/12236">https://github.com/scipy/scipy/pull/12236</a>>`__: DOC: Fix a couple grammatical mistakes in 1.5.0-notes.rst.<br>* `#12276 <<a href="https://github.com/scipy/scipy/pull/12276">https://github.com/scipy/scipy/pull/12276</a>>`__: TST: skip `test_heequb`, it fails intermittently.<br>* `#12285 <<a href="https://github.com/scipy/scipy/pull/12285">https://github.com/scipy/scipy/pull/12285</a>>`__: CI: split travis arm64 run into two<br>* `#12317 <<a href="https://github.com/scipy/scipy/pull/12317">https://github.com/scipy/scipy/pull/12317</a>>`__: BUG: prevent error accumulation in `Rotation` multiplication<br>* `#12318 <<a href="https://github.com/scipy/scipy/pull/12318">https://github.com/scipy/scipy/pull/12318</a>>`__: BUG: sparse: avoid np.prod overflow in check_shape<br>* `#12319 <<a href="https://github.com/scipy/scipy/pull/12319">https://github.com/scipy/scipy/pull/12319</a>>`__: BUG: Make cobyla threadsafe<br>* `#12335 <<a href="https://github.com/scipy/scipy/pull/12335">https://github.com/scipy/scipy/pull/12335</a>>`__: MAINT: Work around Sphinx bug<br><br><br>Checksums<br>=========<br><br>MD5<br>~~~<br><br>6b67c3cdb5fd7ec7f65445ce5432c2d3  scipy-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl<br>cb1c6b8022891ef2644caf26f6d6d0f2  scipy-1.5.0-cp36-cp36m-manylinux1_i686.whl<br>28a26064ae38b16c370be9691d0be2de  scipy-1.5.0-cp36-cp36m-manylinux1_x86_64.whl<br>1a8324e7940ab7c405e534823a33872f  scipy-1.5.0-cp36-cp36m-win32.whl<br>241c63762ae6e903b06c2498f5fef5d9  scipy-1.5.0-cp36-cp36m-win_amd64.whl<br>c9642dfdc834dfc73b83fce7a05c6101  scipy-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl<br>30ec965fac402610192ff67428848f74  scipy-1.5.0-cp37-cp37m-manylinux1_i686.whl<br>46c7068c7cf789777ec4423b2ff83f5f  scipy-1.5.0-cp37-cp37m-manylinux1_x86_64.whl<br>21a5d8636489c065ce84fcba238c0c32  scipy-1.5.0-cp37-cp37m-win32.whl<br>cd0429315d501470b5bb732d23fddf9d  scipy-1.5.0-cp37-cp37m-win_amd64.whl<br>99a35969fdd5329436f679e02c23f185  scipy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl<br>721abc2147746de50e639832c54d1c0a  scipy-1.5.0-cp38-cp38-manylinux1_i686.whl<br>c51a2faadfda7bc56e1492218f9d044c  scipy-1.5.0-cp38-cp38-manylinux1_x86_64.whl<br>8f70224a6b8fb8e55cff52c83df30663  scipy-1.5.0-cp38-cp38-win32.whl<br>8e0c33036795485d14c6221d00cacb9e  scipy-1.5.0-cp38-cp38-win_amd64.whl<br>4b0fc5a2eae9764c302187af4fad975f  scipy-1.5.0.tar.gz<br>4157e49b7a0ba3c74b9df6df90d43245  scipy-1.5.0.tar.xz<br>a14f9de5ed51eb23c8dfa739ec4f50ff  scipy-1.5.0.zip<br><br>SHA256<br>~~~~~~<br><br>8f354e92246de33c44ddfc5fef61bce8c19d5aeeb2130b6a672b15db619453e4  scipy-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl<br>244b4a23a8cb6707e19f5579502112954659bb983852b1c381243fe46d9b6818  scipy-1.5.0-cp36-cp36m-manylinux1_i686.whl<br>d266d955c3fd12336c948abb368de230bf8dc20efad428abb908165d9c87f53f  scipy-1.5.0-cp36-cp36m-manylinux1_x86_64.whl<br>11d8bfcea08e971968d07495bdf1de37b3b1bb5ca78e4ddbe8d60791f0456942  scipy-1.5.0-cp36-cp36m-win32.whl<br>eb48915142f2dbd4b84df8ca66e433946df1a13eff36015c2b7843aa39dbc30d  scipy-1.5.0-cp36-cp36m-win_amd64.whl<br>ae24f16056c87e7f086a56a7aaf6e65e4626ac70b7e08d7f54e078693abcf778  scipy-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl<br>1b23129e9838694c36475b296ac251ae0b0247455352f2bed0b246c30b61c822  scipy-1.5.0-cp37-cp37m-manylinux1_i686.whl<br>69eb6245ff472db406c3e9b3e13bd0dc6e2ff48e7e758a7bfca296ecdb1ae8b9  scipy-1.5.0-cp37-cp37m-manylinux1_x86_64.whl<br>38cdb4eafe727b324f295ab69eaa0788a8eefe08d59360968928753ab7f68ba9  scipy-1.5.0-cp37-cp37m-win32.whl<br>f662ad49ef930325161bd5edac39932c3f1b55547eaa0afce08367522f6314df  scipy-1.5.0-cp37-cp37m-win_amd64.whl<br>40969696eb13c2f1b6fc8e99ce597a47627f0167a7feb6086c2ccdfb55835cfc  scipy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl<br>0f62f3be924a4314cf2384c6f77d3a0e3bf4ada370530a7d0a6d5a61192bec9e  scipy-1.5.0-cp38-cp38-manylinux1_i686.whl<br>4e1a790fdf82a67619a38f017105df4bb66dfcdaea45df793ece27fd534720c2  scipy-1.5.0-cp38-cp38-manylinux1_x86_64.whl<br>2e99f50d0061c385f8f46c5a99bb07ad013ec2dcf95ccba3be4e081594e7ab19  scipy-1.5.0-cp38-cp38-win32.whl<br>2aec0f81a29440e0c000222ac0447748a840d328b5698dd900ece4113bca5cde  scipy-1.5.0-cp38-cp38-win_amd64.whl<br>4ff72877d19b295ee7f7727615ea8238f2d59159df0bdd98f91754be4a2767f0  scipy-1.5.0.tar.gz<br>23baeaa18803d12d1abdff3f5c148b1085c2dc4028c6b8efce652dde2119b41c  scipy-1.5.0.tar.xz<br>92b17f65c2521a48e1853cbc6b1038140f38393ce6293bbdba6e99a7653d8063  scipy-1.5.0.zip<br><br></div>