<div dir="ltr">Hi Tyler,<div><br></div><div>I just tested scipy.optimize.cython_optimize using the jupyter notebooks in this gist:</div><div><a href="https://gist.github.com/mikofski/ac30065073d0d32d6ea3569f6e24e5ec">https://gist.github.com/mikofski/ac30065073d0d32d6ea3569f6e24e5ec</a><br></div><div>and it seems to be working fine.</div><div><br></div><div>procedure:</div><div>1. download the scipy-1.3.0rc1 asset for my platform (macosx py37)</div><div><a href="https://github.com/scipy/scipy/releases/tag/v1.3.0rc1">https://github.com/scipy/scipy/releases/tag/v1.3.0rc1</a><br></div><div>2. download a tarball and extract (or clone) the gist of the jupyter notebook</div><div>3. create virtualenv, activate, and install downloaded scipy-1.3.0rc1 wheel</div><div>4. also pip install cython, ipython, and jupyter into new venv</div><div>5. start jupyter notebook ($ juptyer notebook) navigate to gist, open and run all</div><div><br></div><div>the benchmark times for 1e5 length array on my early 2011 pentium-i5 mac with 16gb were:</div><div><br></div><div><font face="monospace, monospace">cython loop:   39.2ms</font></div><div><font face="monospace, monospace">cython prange: 25.3ms</font></div><div><font face="monospace, monospace">python map:   122ms</font></div><div><font face="monospace, monospace">no-cython:   3120ms</font></div><div><br></div><div>so best case in this scenario was 100X speedup</div><div><br></div><div>thanks!</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Apr 27, 2019 at 4:35 AM Tyler Reddy <<a href="mailto:tyler.je.reddy@gmail.com">tyler.je.reddy@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><pre><font color="#000000" face="arial, helvetica, sans-serif"><span style="white-space:pre-wrap">-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1<br></span></font></pre><pre><font face="arial, helvetica, sans-serif">Hi all,</font></pre><pre><font face="arial, helvetica, sans-serif">On behalf of the SciPy development team I'm pleased to announce
the release candidate SciPy 1.3.0rc1. Please help us test this pre-release.</font></pre><pre><font face="arial, helvetica, sans-serif">Sources and binary wheels can be found at:
<a href="https://pypi.org/project/scipy/" target="_blank">https://pypi.org/project/scipy/</a>
and at:
<font><a href="https://github.com/scipy/scipy/releases/tag/v1.3.0rc1" target="_blank">https://github.com/scipy/scipy/releases/tag/v1.3.0rc1</a>
</font>
</font><div style="white-space:normal"><font face="arial, helvetica, sans-serif">One of a few ways to install the release candidate with pip:</font></div><font face="arial, helvetica, sans-serif">
<span style="white-space:normal">pip install scipy==1.3.0rc1</span><font>
</font></font></pre><pre></pre><pre><font color="#000000"><span style="white-space:pre-wrap">==========================
SciPy 1.3.0 Release Notes
==========================

Note: Scipy 1.3.0 is not released yet!

SciPy 1.3.0 is the culmination of 5 months of hard work. It contains
many new features, numerous bug-fixes, improved test coverage and better
documentation. There have been some API changes
in this release, which are documented below. All users are encouraged to
upgrade to this release, as there are a large number of bug-fixes and
optimizations. Before upgrading, we recommend that users check that
their own code does not use deprecated SciPy functionality (to do so,
run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).
Our development attention will now shift to bug-fix releases on the
1.3.x branch, and on adding new features on the master branch.

This release requires Python 3.5+ and NumPy 1.13.3 or greater.

For running on PyPy, PyPy3 6.0+ and NumPy 1.15.0 are required.

Highlights of this release
--------------------------

- Three new ``stats`` functions, a rewrite of ``pearsonr``, and an exact
  computation of the Kolmogorov-Smirnov two-sample test
- A new Cython API for bounded scalar-function root-finders in `scipy.optimize`
- Substantial ``CSR`` and ``CSC`` sparse matrix indexing performance
  improvements
- Added support for interpolation of rotations with continuous angular
  rate and acceleration in ``RotationSpline``


New features
============

`scipy.interpolate` improvements
--------------------------------

A new class ``CubicHermiteSpline`` is introduced. It is a piecewise-cubic 
interpolator which matches observed values and first derivatives. Existing 
cubic interpolators ``CubicSpline``, ``PchipInterpolator`` and 
``Akima1DInterpolator`` were made subclasses of ``CubicHermiteSpline``.

`<a href="http://scipy.io" target="_blank">scipy.io</a>` improvements
-----------------------

For the Attribute-Relation File Format (ARFF) `scipy.io.arff.loadarff` 
now supports relational attributes.

`scipy.io.mmread` can now parse Matrix Market format files with empty lines.

`scipy.linalg` improvements
---------------------------

Added wrappers for ``?syconv`` routines, which convert a symmetric matrix 
given by a triangular matrix factorization into two matrices and vice versa.

`scipy.linalg.clarkson_woodruff_transform` now uses an algorithm that leverages
sparsity. This may provide a 60-90 percent speedup for dense input matrices.
Truly sparse input matrices should also benefit from the improved sketch
algorithm, which now correctly runs in ``O(nnz(A))`` time.

Added new functions to calculate symmetric Fiedler matrices and
Fiedler companion matrices, named `scipy.linalg.fiedler` and 
`scipy.linalg.fiedler_companion`, respectively. These may be used
for root finding.

`scipy.ndimage` improvements
----------------------------

Gaussian filter performances may improve by an order of magnitude in
some cases, thanks to removal of a dependence on ``np.polynomial``. This
may impact `scipy.ndimage.gaussian_filter` for example.

`scipy.optimize` improvements
-----------------------------

The `scipy.optimize.brute` minimizer obtained a new keyword ``workers``, which
can be used to parallelize computation.

A Cython API for bounded scalar-function root-finders in `scipy.optimize`
is available in a new module `scipy.optimize.cython_optimize` via ``cimport``.
This API may be used with ``nogil`` and ``prange`` to loop 
over an array of function arguments to solve for an array of roots more 
quickly than with pure Python.

``'interior-point'`` is now the default method for ``linprog``, and 
``'interior-point'`` now uses SuiteSparse for sparse problems when the 
required scikits  (scikit-umfpack and scikit-sparse) are available. 
On benchmark problems (gh-10026), execution time reductions by factors of 2-3 
were typical. Also, a new ``method='revised simplex'`` has been added. 
It is not as fast or robust as ``method='interior-point'``, but it is a faster,
more robust, and equally accurate substitute for the legacy 
``method='simplex'``.

``differential_evolution`` can now use a ``Bounds`` class to specify the
bounds for the optimizing argument of a function.

`scipy.optimize.dual_annealing` performance improvements related to
vectorisation of some internal code.

`scipy.signal` improvements
---------------------------

Two additional methods of discretization are now supported by 
`scipy.signal.cont2discrete`: ``impulse`` and ``foh``.

`scipy.signal.firls` now uses faster solvers

`scipy.signal.detrend` now has a lower physical memory footprint in some
cases, which may be leveraged using the new ``overwrite_data`` keyword argument

`scipy.signal.firwin` ``pass_zero`` argument now accepts new string arguments
that allow specification of the desired filter type: ``'bandpass'``,
``'lowpass'``, ``'highpass'``, and ``'bandstop'``

`scipy.signal.sosfilt` may have improved performance due to lower retention
of the global interpreter lock (GIL) in algorithm

`scipy.sparse` improvements
---------------------------

A new keyword was added to ``csgraph.dijsktra`` that 
allows users to query the shortest path to ANY of the passed in indices,
as opposed to the shortest path to EVERY passed index.

`scipy.sparse.linalg.lsmr` performance has been improved by roughly 10 percent
on large problems

Improved performance and reduced physical memory footprint of the algorithm
used by `scipy.sparse.linalg.lobpcg`

``CSR`` and ``CSC`` sparse matrix fancy indexing performance has been
improved substantially

`scipy.spatial` improvements
----------------------------

`scipy.spatial.ConvexHull` now has a ``good`` attribute that can be used 
alongsize the ``QGn`` Qhull options to determine which external facets of a 
convex hull are visible from an external query point.

`scipy.spatial.cKDTree.query_ball_point` has been modernized to use some newer 
Cython features, including GIL handling and exception translation. An issue 
with ``return_sorted=True`` and scalar queries was fixed, and a new mode named 
``return_length`` was added. ``return_length`` only computes the length of the 
returned indices list instead of allocating the array every time.

`scipy.spatial.transform.RotationSpline` has been added to enable interpolation
of rotations with continuous angular rates and acceleration

`scipy.stats` improvements
--------------------------

Added a new function to compute the Epps-Singleton test statistic,
`scipy.stats.epps_singleton_2samp`, which can be applied to continuous and
discrete distributions.

New functions `scipy.stats.median_absolute_deviation` and `scipy.stats.gstd`
(geometric standard deviation) were added. The `scipy.stats.combine_pvalues` 
method now supports ``pearson``,  ``tippett`` and ``mudholkar_george`` pvalue 
combination methods.

The `scipy.stats.ortho_group` and `scipy.stats.special_ortho_group` 
``rvs(dim)`` functions' algorithms were updated from a ``O(dim^4)`` 
implementation to a ``O(dim^3)`` which gives large speed improvements 
for ``dim>100``.

A rewrite of `scipy.stats.pearsonr` to use a more robust algorithm,
provide meaningful exceptions and warnings on potentially pathological input,
and fix at least five separate reported issues in the original implementation.

Improved the precision of ``hypergeom.logcdf`` and ``hypergeom.logsf``.

Added exact computation for Kolmogorov-Smirnov (KS) two-sample test, replacing
the previously approximate computation for the two-sided test `stats.ks_2samp`.
Also added a one-sided, two-sample KS test, and a keyword ``alternative`` to 
`stats.ks_2samp`.

Backwards incompatible changes
==============================

`scipy.interpolate` changes
---------------------------

Functions from ``scipy.interpolate`` (``spleval``, ``spline``, ``splmake``,
and ``spltopp``) and functions from ``scipy.misc`` (``bytescale``,
``fromimage``, ``imfilter``, ``imread``, ``imresize``, ``imrotate``,
``imsave``, ``imshow``, ``toimage``) have been removed. The former set has 
been deprecated since v0.19.0 and the latter has been deprecated since v1.0.0.
Similarly, aliases from ``scipy.misc`` (``comb``, ``factorial``,
``factorial2``, ``factorialk``, ``logsumexp``, ``pade``, ``info``, ``source``,
``who``) which have been deprecated since v1.0.0 are removed. 
`SciPy documentation for
v1.1.0 <<a href="https://docs.scipy.org/doc/scipy-1.1.0/reference/misc.html" target="_blank">https://docs.scipy.org/doc/scipy-1.1.0/reference/misc.html</a>>`__
can be used to track the new import locations for the relocated functions.

`scipy.linalg` changes
----------------------

For ``pinv``, ``pinv2``, and ``pinvh``, the default cutoff values are changed 
for consistency (see the docs for the actual values).

`scipy.stats` changes
---------------------

Previously, ``ks_2samp(data1, data2)`` would run a two-sided test and return 
the approximated p-value. The new signature, ``ks_2samp(data1, data2,
alternative="two-sided", method="auto")``, still runs the two-sided test by
default but returns the exact p-value for small samples and the approximated
value for large samples. ``method="asymp"`` would be equivalent to the 
old version but ``auto`` is the better choice.

Other changes
=============

Our tutorial has been expanded with a new section on global optimizers

There has been a rework of the ``stats.distributions`` tutorials.

`scipy.optimize` now correctly sets the convergence flag of the result to 
``CONVERR``, a convergence error, for bounded scalar-function root-finders 
if the maximum iterations has been exceeded, ``disp`` is false, and 
``full_output`` is true.

`scipy.optimize.curve_fit` no longer fails if ``xdata`` and ``ydata`` dtypes 
differ; they are both now automatically cast to ``float64``.

`scipy.ndimage` functions including ``binary_erosion``, ``binary_closing``, and 
``binary_dilation`` now require an integer value for the number of iterations,
which alleviates a number of reported issues.

Fixed normal approximation in case ``zero_method == "pratt"`` in 
`scipy.stats.wilcoxon`.

Fixes for incorrect probabilities, broadcasting issues and thread-safety 
related to stats distributions setting member variables inside ``_argcheck()``.

`scipy.optimize.newton` now correctly raises a ``RuntimeError``, when default 
arguments are used, in the case that a derivative of value zero is obtained,
which is a special case of failing to converge.

A draft toolchain roadmap is now available, laying out a compatibility plan
including Python versions, C standards, and NumPy versions.


Authors
=======

* ananyashreyjain +
* ApamNapat +
* Scott Calabrese Barton +
* Christoph Baumgarten
* Peter Bell +
* Jacob Blomgren +
* Doctor Bob +
* Mana Borwornpadungkitti +
* Matthew Brett
* Evgeni Burovski
* CJ Carey
* Vega Theil Carstensen +
* Robert Cimrman
* Forrest Collman +
* Pietro Cottone +
* David +
* Idan David +
* Christoph Deil
* Dieter Werthmüller
* Conner DiPaolo +
* Dowon
* Michael Dunphy +
* Peter Andreas Entschev +
* Gökçen Eraslan +
* Johann Faouzi +
* Yu Feng
* Piotr Figiel +
* Matthew H Flamm
* Franz Forstmayr +
* Christoph Gohlke
* Richard Janis Goldschmidt +
* Ralf Gommers
* Lars Grueter
* Sylvain Gubian
* Matt Haberland
* Yaroslav Halchenko
* Charles Harris
* Lindsey Hiltner
* JakobStruye +
* He Jia +
* Jwink3101 +
* Greg Kiar +
* Julius Bier Kirkegaard
* John Kirkham +
* Thomas Kluyver
* Vladimir Korolev +
* Joseph Kuo +
* Michael Lamparski +
* Eric Larson
* Denis Laxalde
* Katrin Leinweber
* Jesse Livezey
* ludcila +
* Dhruv Madeka +
* Magnus +
* Nikolay Mayorov
* Mark Mikofski
* Jarrod Millman
* Markus Mohrhard +
* Eric Moore
* Andrew Nelson
* Aki Nishimura +
* OGordon100 +
* Petar Mlinarić +
* Stefan Peterson
* Matti Picus +
* Ilhan Polat
* Aaron Pries +
* Matteo Ravasi +
* Tyler Reddy
* Ashton Reimer +
* Joscha Reimer
* rfezzani +
* Riadh +
* Lucas Roberts
* Heshy Roskes +
* Mirko Scholz +
* Taylor D. Scott +
* Srikrishna Sekhar +
* Kevin Sheppard +
* Sourav Singh
* skjerns +
* Kai Striega
* SyedSaifAliAlvi +
* Gopi Manohar T +
* Albert Thomas +
* Timon +
* Paul van Mulbregt
* Jacob Vanderplas
* Daniel Vargas +
* Pauli Virtanen
* VNMabus +
* Stefan van der Walt
* Warren Weckesser
* Josh Wilson
* Nate Yoder +
* Roman Yurchak

A total of 97 people contributed to this release.
People with a "+" by their names contributed a patch for the first time.
This list of names is automatically generated, and may not be fully complete.

Issues closed for 1.3.0
-----------------------

* `#1320 <<a href="https://github.com/scipy/scipy/issues/1320" target="_blank">https://github.com/scipy/scipy/issues/1320</a>>`__: scipy.stats.distribution: problem with self.a, self.b if they...
* `#2002 <<a href="https://github.com/scipy/scipy/issues/2002" target="_blank">https://github.com/scipy/scipy/issues/2002</a>>`__: members set in scipy.stats.distributions.##._argcheck (Trac #1477)
* `#2823 <<a href="https://github.com/scipy/scipy/issues/2823" target="_blank">https://github.com/scipy/scipy/issues/2823</a>>`__: distribution methods add tmp
* `#3220 <<a href="https://github.com/scipy/scipy/issues/3220" target="_blank">https://github.com/scipy/scipy/issues/3220</a>>`__: Scipy.opimize.fmin_powell direc argument syntax unclear
* `#3728 <<a href="https://github.com/scipy/scipy/issues/3728" target="_blank">https://github.com/scipy/scipy/issues/3728</a>>`__: scipy.stats.pearsonr: possible bug with zero variance input
* `#6805 <<a href="https://github.com/scipy/scipy/issues/6805" target="_blank">https://github.com/scipy/scipy/issues/6805</a>>`__: error-in-scipy-wilcoxon-signed-rank-test-for-equal-series
* `#6873 <<a href="https://github.com/scipy/scipy/issues/6873" target="_blank">https://github.com/scipy/scipy/issues/6873</a>>`__: 'stats.boxcox' return all same values
* `#7117 <<a href="https://github.com/scipy/scipy/issues/7117" target="_blank">https://github.com/scipy/scipy/issues/7117</a>>`__: Warn users when using float32 input data to curve_fit and friends
* `#7632 <<a href="https://github.com/scipy/scipy/issues/7632" target="_blank">https://github.com/scipy/scipy/issues/7632</a>>`__: it's not possible to tell the \`optimize.least_squares\` solver...
* `#7730 <<a href="https://github.com/scipy/scipy/issues/7730" target="_blank">https://github.com/scipy/scipy/issues/7730</a>>`__: stats.pearsonr: Potential division by zero for dataset of length...
* `#7933 <<a href="https://github.com/scipy/scipy/issues/7933" target="_blank">https://github.com/scipy/scipy/issues/7933</a>>`__: stats.truncnorm fails when providing values outside truncation...
* `#8033 <<a href="https://github.com/scipy/scipy/issues/8033" target="_blank">https://github.com/scipy/scipy/issues/8033</a>>`__: Add standard filter types to firwin to set pass_zero intuitively...
* `#8600 <<a href="https://github.com/scipy/scipy/issues/8600" target="_blank">https://github.com/scipy/scipy/issues/8600</a>>`__: lfilter.c.src zfill has erroneous header
* `#8692 <<a href="https://github.com/scipy/scipy/issues/8692" target="_blank">https://github.com/scipy/scipy/issues/8692</a>>`__: Non-negative values of \`stats.hypergeom.logcdf\`
* `#8734 <<a href="https://github.com/scipy/scipy/issues/8734" target="_blank">https://github.com/scipy/scipy/issues/8734</a>>`__: Enable pip build isolation
* `#8861 <<a href="https://github.com/scipy/scipy/issues/8861" target="_blank">https://github.com/scipy/scipy/issues/8861</a>>`__: scipy.linalg.pinv gives wrong result while scipy.linalg.pinv2...
* `#8915 <<a href="https://github.com/scipy/scipy/issues/8915" target="_blank">https://github.com/scipy/scipy/issues/8915</a>>`__: need to fix macOS build against older numpy versions
* `#8980 <<a href="https://github.com/scipy/scipy/issues/8980" target="_blank">https://github.com/scipy/scipy/issues/8980</a>>`__: scipy.stats.pearsonr overflows with high values of x and y
* `#9226 <<a href="https://github.com/scipy/scipy/issues/9226" target="_blank">https://github.com/scipy/scipy/issues/9226</a>>`__: BUG: signal: SystemError: <built-in function _linear_filter>...
* `#9254 <<a href="https://github.com/scipy/scipy/issues/9254" target="_blank">https://github.com/scipy/scipy/issues/9254</a>>`__: BUG: root finders brentq, etc, flag says "converged" even if...
* `#9308 <<a href="https://github.com/scipy/scipy/issues/9308" target="_blank">https://github.com/scipy/scipy/issues/9308</a>>`__: Test failure - test_initial_constraints_as_canonical
* `#9353 <<a href="https://github.com/scipy/scipy/issues/9353" target="_blank">https://github.com/scipy/scipy/issues/9353</a>>`__: scipy.stats.pearsonr returns r=1 if r_num/r_den = inf
* `#9359 <<a href="https://github.com/scipy/scipy/issues/9359" target="_blank">https://github.com/scipy/scipy/issues/9359</a>>`__: Planck distribution is a geometric distribution
* `#9381 <<a href="https://github.com/scipy/scipy/issues/9381" target="_blank">https://github.com/scipy/scipy/issues/9381</a>>`__: linregress should warn user in 2x2 array case
* `#9406 <<a href="https://github.com/scipy/scipy/issues/9406" target="_blank">https://github.com/scipy/scipy/issues/9406</a>>`__: BUG: stats: In pearsonr, when r is nan, the p-value must also...
* `#9437 <<a href="https://github.com/scipy/scipy/issues/9437" target="_blank">https://github.com/scipy/scipy/issues/9437</a>>`__: Cannot create sparse matrix from size_t indexes
* `#9518 <<a href="https://github.com/scipy/scipy/issues/9518" target="_blank">https://github.com/scipy/scipy/issues/9518</a>>`__: Relational attributes in loadarff
* `#9551 <<a href="https://github.com/scipy/scipy/issues/9551" target="_blank">https://github.com/scipy/scipy/issues/9551</a>>`__: BUG: scipy.optimize.newton says the root of x^2+1 is zero.
* `#9564 <<a href="https://github.com/scipy/scipy/issues/9564" target="_blank">https://github.com/scipy/scipy/issues/9564</a>>`__: rv_sample accepts invalid input in scipy.stats
* `#9565 <<a href="https://github.com/scipy/scipy/issues/9565" target="_blank">https://github.com/scipy/scipy/issues/9565</a>>`__: improper handling of multidimensional input in stats.rv_sample
* `#9581 <<a href="https://github.com/scipy/scipy/issues/9581" target="_blank">https://github.com/scipy/scipy/issues/9581</a>>`__: Least-squares minimization fails silently when x and y data are...
* `#9587 <<a href="https://github.com/scipy/scipy/issues/9587" target="_blank">https://github.com/scipy/scipy/issues/9587</a>>`__: Outdated value for <a href="http://scipy.constants.au" target="_blank">scipy.constants.au</a>
* `#9611 <<a href="https://github.com/scipy/scipy/issues/9611" target="_blank">https://github.com/scipy/scipy/issues/9611</a>>`__: Overflow error with new way of p-value calculation in kendall...
* `#9645 <<a href="https://github.com/scipy/scipy/issues/9645" target="_blank">https://github.com/scipy/scipy/issues/9645</a>>`__: \`scipy.stats.mode\` crashes with variable length arrays (\`dtype=object\`)
* `#9734 <<a href="https://github.com/scipy/scipy/issues/9734" target="_blank">https://github.com/scipy/scipy/issues/9734</a>>`__: PendingDeprecationWarning for np.matrix with pytest
* `#9786 <<a href="https://github.com/scipy/scipy/issues/9786" target="_blank">https://github.com/scipy/scipy/issues/9786</a>>`__: stats.ks_2samp() misleading for small data sets.
* `#9790 <<a href="https://github.com/scipy/scipy/issues/9790" target="_blank">https://github.com/scipy/scipy/issues/9790</a>>`__: Excessive memory usage on detrend
* `#9801 <<a href="https://github.com/scipy/scipy/issues/9801" target="_blank">https://github.com/scipy/scipy/issues/9801</a>>`__: dual_annealing does not set the success attribute in OptimizeResult
* `#9833 <<a href="https://github.com/scipy/scipy/issues/9833" target="_blank">https://github.com/scipy/scipy/issues/9833</a>>`__: IntegrationWarning from mielke.stats() during build of html doc.
* `#9835 <<a href="https://github.com/scipy/scipy/issues/9835" target="_blank">https://github.com/scipy/scipy/issues/9835</a>>`__: scipy.signal.firls seems to be inefficient versus MATLAB firls
* `#9864 <<a href="https://github.com/scipy/scipy/issues/9864" target="_blank">https://github.com/scipy/scipy/issues/9864</a>>`__: Curve_fit does not check for empty input data if called with...
* `#9869 <<a href="https://github.com/scipy/scipy/issues/9869" target="_blank">https://github.com/scipy/scipy/issues/9869</a>>`__: scipy.ndimage.label: Minor documentation issue
* `#9882 <<a href="https://github.com/scipy/scipy/issues/9882" target="_blank">https://github.com/scipy/scipy/issues/9882</a>>`__: format at the wrong paranthesis in scipy.spatial.transform
* `#9889 <<a href="https://github.com/scipy/scipy/issues/9889" target="_blank">https://github.com/scipy/scipy/issues/9889</a>>`__: scipy.signal.find_peaks minor documentation issue
* `#9890 <<a href="https://github.com/scipy/scipy/issues/9890" target="_blank">https://github.com/scipy/scipy/issues/9890</a>>`__: Minkowski p-norm Issues in cKDTree For Values Other Than 2 Or...
* `#9896 <<a href="https://github.com/scipy/scipy/issues/9896" target="_blank">https://github.com/scipy/scipy/issues/9896</a>>`__: scipy.stats._argcheck sets (not just checks) values
* `#9905 <<a href="https://github.com/scipy/scipy/issues/9905" target="_blank">https://github.com/scipy/scipy/issues/9905</a>>`__: Memory error in ndimage.binary_erosion
* `#9909 <<a href="https://github.com/scipy/scipy/issues/9909" target="_blank">https://github.com/scipy/scipy/issues/9909</a>>`__: binary_dilation/erosion/closing crashes when iterations is float
* `#9919 <<a href="https://github.com/scipy/scipy/issues/9919" target="_blank">https://github.com/scipy/scipy/issues/9919</a>>`__: BUG: \`coo_matrix\` does not validate the \`shape\` argument.
* `#9982 <<a href="https://github.com/scipy/scipy/issues/9982" target="_blank">https://github.com/scipy/scipy/issues/9982</a>>`__: lsq_linear hangs/infinite loop with 'trf' method
* `#10003 <<a href="https://github.com/scipy/scipy/issues/10003" target="_blank">https://github.com/scipy/scipy/issues/10003</a>>`__: exponnorm.pdf returns NAN for small K
* `#10011 <<a href="https://github.com/scipy/scipy/issues/10011" target="_blank">https://github.com/scipy/scipy/issues/10011</a>>`__: Incorrect check for invalid rotation plane in scipy.ndimage.rotate
* `#10024 <<a href="https://github.com/scipy/scipy/issues/10024" target="_blank">https://github.com/scipy/scipy/issues/10024</a>>`__: Fails to build from git
* `#10048 <<a href="https://github.com/scipy/scipy/issues/10048" target="_blank">https://github.com/scipy/scipy/issues/10048</a>>`__: DOC: scipy.optimize.root_scalar
* `#10068 <<a href="https://github.com/scipy/scipy/issues/10068" target="_blank">https://github.com/scipy/scipy/issues/10068</a>>`__: DOC: scipy.interpolate.splev
* `#10074 <<a href="https://github.com/scipy/scipy/issues/10074" target="_blank">https://github.com/scipy/scipy/issues/10074</a>>`__: BUG: \`expm\` calculates the wrong coefficients in the backward...


Pull requests for 1.3.0
-----------------------

* `#7827 <<a href="https://github.com/scipy/scipy/pull/7827" target="_blank">https://github.com/scipy/scipy/pull/7827</a>>`__: ENH: sparse: overhaul of sparse matrix indexing
* `#8431 <<a href="https://github.com/scipy/scipy/pull/8431" target="_blank">https://github.com/scipy/scipy/pull/8431</a>>`__: ENH: Cython optimize zeros api
* `#8743 <<a href="https://github.com/scipy/scipy/pull/8743" target="_blank">https://github.com/scipy/scipy/pull/8743</a>>`__: DOC: Updated linalg.pinv, .pinv2, .pinvh docstrings
* `#8744 <<a href="https://github.com/scipy/scipy/pull/8744" target="_blank">https://github.com/scipy/scipy/pull/8744</a>>`__: DOC: added examples to remez docstring
* `#9227 <<a href="https://github.com/scipy/scipy/pull/9227" target="_blank">https://github.com/scipy/scipy/pull/9227</a>>`__: DOC: update description of "direc" parameter of "fmin_powell"
* `#9263 <<a href="https://github.com/scipy/scipy/pull/9263" target="_blank">https://github.com/scipy/scipy/pull/9263</a>>`__: ENH: optimize: added "revised simplex" for scipy.optimize.linprog
* `#9325 <<a href="https://github.com/scipy/scipy/pull/9325" target="_blank">https://github.com/scipy/scipy/pull/9325</a>>`__: DEP: Remove deprecated functions for 1.3.0
* `#9330 <<a href="https://github.com/scipy/scipy/pull/9330" target="_blank">https://github.com/scipy/scipy/pull/9330</a>>`__: Add note on push and pull affine transformations
* `#9423 <<a href="https://github.com/scipy/scipy/pull/9423" target="_blank">https://github.com/scipy/scipy/pull/9423</a>>`__: DOC: Clearly state how 2x2 input arrays are handled in stats.linregress
* `#9428 <<a href="https://github.com/scipy/scipy/pull/9428" target="_blank">https://github.com/scipy/scipy/pull/9428</a>>`__: ENH: parallelised brute
* `#9438 <<a href="https://github.com/scipy/scipy/pull/9438" target="_blank">https://github.com/scipy/scipy/pull/9438</a>>`__: BUG: Initialize coo matrix with size_t indexes
* `#9455 <<a href="https://github.com/scipy/scipy/pull/9455" target="_blank">https://github.com/scipy/scipy/pull/9455</a>>`__: MAINT: Speed up get_(lapack,blas)_func
* `#9465 <<a href="https://github.com/scipy/scipy/pull/9465" target="_blank">https://github.com/scipy/scipy/pull/9465</a>>`__: MAINT: Clean up optimize.zeros C solvers interfaces/code.
* `#9477 <<a href="https://github.com/scipy/scipy/pull/9477" target="_blank">https://github.com/scipy/scipy/pull/9477</a>>`__: DOC: linalg: fix lstsq docstring on residues shape
* `#9478 <<a href="https://github.com/scipy/scipy/pull/9478" target="_blank">https://github.com/scipy/scipy/pull/9478</a>>`__: DOC: Add docstring examples for rosen functions
* `#9479 <<a href="https://github.com/scipy/scipy/pull/9479" target="_blank">https://github.com/scipy/scipy/pull/9479</a>>`__: DOC: Add docstring example for ai_zeros and bi_zeros
* `#9480 <<a href="https://github.com/scipy/scipy/pull/9480" target="_blank">https://github.com/scipy/scipy/pull/9480</a>>`__: MAINT: linalg: lstsq clean up
* `#9489 <<a href="https://github.com/scipy/scipy/pull/9489" target="_blank">https://github.com/scipy/scipy/pull/9489</a>>`__: DOC: roadmap update for changes over the last year.
* `#9492 <<a href="https://github.com/scipy/scipy/pull/9492" target="_blank">https://github.com/scipy/scipy/pull/9492</a>>`__: MAINT: stats: Improve implementation of chi2 ppf method.
* `#9497 <<a href="https://github.com/scipy/scipy/pull/9497" target="_blank">https://github.com/scipy/scipy/pull/9497</a>>`__: DOC: Improve docstrings sparse.linalg.isolve
* `#9499 <<a href="https://github.com/scipy/scipy/pull/9499" target="_blank">https://github.com/scipy/scipy/pull/9499</a>>`__: DOC: Replace "Scipy" with "SciPy" in the .rst doc files for consistency.
* `#9500 <<a href="https://github.com/scipy/scipy/pull/9500" target="_blank">https://github.com/scipy/scipy/pull/9500</a>>`__: DOC: Document the toolchain and its roadmap.
* `#9505 <<a href="https://github.com/scipy/scipy/pull/9505" target="_blank">https://github.com/scipy/scipy/pull/9505</a>>`__: DOC: specify which definition of skewness is used
* `#9511 <<a href="https://github.com/scipy/scipy/pull/9511" target="_blank">https://github.com/scipy/scipy/pull/9511</a>>`__: DEP: interpolate: remove deprecated interpolate_wrapper
* `#9517 <<a href="https://github.com/scipy/scipy/pull/9517" target="_blank">https://github.com/scipy/scipy/pull/9517</a>>`__: BUG: improve error handling in stats.iqr
* `#9522 <<a href="https://github.com/scipy/scipy/pull/9522" target="_blank">https://github.com/scipy/scipy/pull/9522</a>>`__: ENH: Add Fiedler and fiedler companion to special matrices
* `#9526 <<a href="https://github.com/scipy/scipy/pull/9526" target="_blank">https://github.com/scipy/scipy/pull/9526</a>>`__: TST: relax precision requirements in signal.correlate tests
* `#9529 <<a href="https://github.com/scipy/scipy/pull/9529" target="_blank">https://github.com/scipy/scipy/pull/9529</a>>`__: DOC: fix missing random seed in optimize.newton example
* `#9533 <<a href="https://github.com/scipy/scipy/pull/9533" target="_blank">https://github.com/scipy/scipy/pull/9533</a>>`__: MAINT: Use list comprehension when possible
* `#9537 <<a href="https://github.com/scipy/scipy/pull/9537" target="_blank">https://github.com/scipy/scipy/pull/9537</a>>`__: DOC: add a "big picture" roadmap
* `#9538 <<a href="https://github.com/scipy/scipy/pull/9538" target="_blank">https://github.com/scipy/scipy/pull/9538</a>>`__: DOC: Replace "Numpy" with "NumPy" in .py, .rst and .txt doc files...
* `#9539 <<a href="https://github.com/scipy/scipy/pull/9539" target="_blank">https://github.com/scipy/scipy/pull/9539</a>>`__: ENH: add two-sample test (Epps-Singleton) to scipy.stats
* `#9559 <<a href="https://github.com/scipy/scipy/pull/9559" target="_blank">https://github.com/scipy/scipy/pull/9559</a>>`__: DOC: add section on global optimizers to tutorial
* `#9561 <<a href="https://github.com/scipy/scipy/pull/9561" target="_blank">https://github.com/scipy/scipy/pull/9561</a>>`__: ENH: remove noprefix.h, change code appropriately
* `#9562 <<a href="https://github.com/scipy/scipy/pull/9562" target="_blank">https://github.com/scipy/scipy/pull/9562</a>>`__: MAINT: stats: Rewrite pearsonr.
* `#9563 <<a href="https://github.com/scipy/scipy/pull/9563" target="_blank">https://github.com/scipy/scipy/pull/9563</a>>`__: BUG: Minor bug fix Callback in linprog(method='simplex')
* `#9568 <<a href="https://github.com/scipy/scipy/pull/9568" target="_blank">https://github.com/scipy/scipy/pull/9568</a>>`__: MAINT: raise runtime error for newton with zeroder if disp true,...
* `#9570 <<a href="https://github.com/scipy/scipy/pull/9570" target="_blank">https://github.com/scipy/scipy/pull/9570</a>>`__: Correct docstring in show_options in optimize. Fixes #9407
* `#9573 <<a href="https://github.com/scipy/scipy/pull/9573" target="_blank">https://github.com/scipy/scipy/pull/9573</a>>`__: BUG fixes range of pk variable pre-check
* `#9577 <<a href="https://github.com/scipy/scipy/pull/9577" target="_blank">https://github.com/scipy/scipy/pull/9577</a>>`__: TST: fix minor issue in a signal.stft test.
* `#9580 <<a href="https://github.com/scipy/scipy/pull/9580" target="_blank">https://github.com/scipy/scipy/pull/9580</a>>`__: Included blank line before list - Fixes #8658
* `#9582 <<a href="https://github.com/scipy/scipy/pull/9582" target="_blank">https://github.com/scipy/scipy/pull/9582</a>>`__: MAINT: drop Python 2.7 and 3.4
* `#9588 <<a href="https://github.com/scipy/scipy/pull/9588" target="_blank">https://github.com/scipy/scipy/pull/9588</a>>`__: MAINT: update \`constants.astronomical_unit\` to new 2012 value.
* `#9592 <<a href="https://github.com/scipy/scipy/pull/9592" target="_blank">https://github.com/scipy/scipy/pull/9592</a>>`__: TST: Add 32-bit testing to CI
* `#9593 <<a href="https://github.com/scipy/scipy/pull/9593" target="_blank">https://github.com/scipy/scipy/pull/9593</a>>`__: DOC: Replace cumulative density with cumulative distribution
* `#9596 <<a href="https://github.com/scipy/scipy/pull/9596" target="_blank">https://github.com/scipy/scipy/pull/9596</a>>`__: TST: remove VC 9.0 from Azure CI
* `#9599 <<a href="https://github.com/scipy/scipy/pull/9599" target="_blank">https://github.com/scipy/scipy/pull/9599</a>>`__: Hyperlink DOI to preferred resolver
* `#9601 <<a href="https://github.com/scipy/scipy/pull/9601" target="_blank">https://github.com/scipy/scipy/pull/9601</a>>`__: DEV: try to limit GC memory use on PyPy
* `#9603 <<a href="https://github.com/scipy/scipy/pull/9603" target="_blank">https://github.com/scipy/scipy/pull/9603</a>>`__: MAINT: improve logcdf and logsf of hypergeometric distribution
* `#9605 <<a href="https://github.com/scipy/scipy/pull/9605" target="_blank">https://github.com/scipy/scipy/pull/9605</a>>`__: Reference to pylops in LinearOperator notes and ARPACK example
* `#9617 <<a href="https://github.com/scipy/scipy/pull/9617" target="_blank">https://github.com/scipy/scipy/pull/9617</a>>`__: TST: reduce max memory usage for sparse.linalg.lgmres test
* `#9619 <<a href="https://github.com/scipy/scipy/pull/9619" target="_blank">https://github.com/scipy/scipy/pull/9619</a>>`__: FIX: Sparse matrix addition/subtraction eliminates explicit zeros
* `#9621 <<a href="https://github.com/scipy/scipy/pull/9621" target="_blank">https://github.com/scipy/scipy/pull/9621</a>>`__: bugfix in rv_sample in scipy.stats
* `#9622 <<a href="https://github.com/scipy/scipy/pull/9622" target="_blank">https://github.com/scipy/scipy/pull/9622</a>>`__: MAINT: Raise error in directed_hausdorff distance
* `#9623 <<a href="https://github.com/scipy/scipy/pull/9623" target="_blank">https://github.com/scipy/scipy/pull/9623</a>>`__: DOC: Build docs with warnings as errors
* `#9625 <<a href="https://github.com/scipy/scipy/pull/9625" target="_blank">https://github.com/scipy/scipy/pull/9625</a>>`__: Return the number of calls to 'hessp' (not just 'hess') in trust...
* `#9627 <<a href="https://github.com/scipy/scipy/pull/9627" target="_blank">https://github.com/scipy/scipy/pull/9627</a>>`__: BUG: ignore empty lines in mmio
* `#9637 <<a href="https://github.com/scipy/scipy/pull/9637" target="_blank">https://github.com/scipy/scipy/pull/9637</a>>`__: Function to calculate the MAD of an array
* `#9646 <<a href="https://github.com/scipy/scipy/pull/9646" target="_blank">https://github.com/scipy/scipy/pull/9646</a>>`__: BUG: stats: mode for objects w/ndim > 1
* `#9648 <<a href="https://github.com/scipy/scipy/pull/9648" target="_blank">https://github.com/scipy/scipy/pull/9648</a>>`__: Add \`stats.contingency\` to refguide-check
* `#9650 <<a href="https://github.com/scipy/scipy/pull/9650" target="_blank">https://github.com/scipy/scipy/pull/9650</a>>`__: ENH: many lobpcg() algorithm improvements
* `#9652 <<a href="https://github.com/scipy/scipy/pull/9652" target="_blank">https://github.com/scipy/scipy/pull/9652</a>>`__: Move misc.doccer to _lib.doccer
* `#9660 <<a href="https://github.com/scipy/scipy/pull/9660" target="_blank">https://github.com/scipy/scipy/pull/9660</a>>`__: ENH: add pearson, tippett, and mudholkar-george to combine_pvalues
* `#9661 <<a href="https://github.com/scipy/scipy/pull/9661" target="_blank">https://github.com/scipy/scipy/pull/9661</a>>`__: BUG: Fix ksone right-hand endpoint, documentation and tests.
* `#9664 <<a href="https://github.com/scipy/scipy/pull/9664" target="_blank">https://github.com/scipy/scipy/pull/9664</a>>`__: ENH: adding multi-target dijsktra performance enhancement
* `#9670 <<a href="https://github.com/scipy/scipy/pull/9670" target="_blank">https://github.com/scipy/scipy/pull/9670</a>>`__: MAINT: link planck and geometric distribution in scipy.stats
* `#9676 <<a href="https://github.com/scipy/scipy/pull/9676" target="_blank">https://github.com/scipy/scipy/pull/9676</a>>`__: ENH: optimize: change default linprog method to interior-point
* `#9685 <<a href="https://github.com/scipy/scipy/pull/9685" target="_blank">https://github.com/scipy/scipy/pull/9685</a>>`__: Added reference to ndimage.filters.median_filter
* `#9705 <<a href="https://github.com/scipy/scipy/pull/9705" target="_blank">https://github.com/scipy/scipy/pull/9705</a>>`__: Fix coefficients in expm helper function
* `#9711 <<a href="https://github.com/scipy/scipy/pull/9711" target="_blank">https://github.com/scipy/scipy/pull/9711</a>>`__: Release the GIL during sosfilt processing for simple types
* `#9721 <<a href="https://github.com/scipy/scipy/pull/9721" target="_blank">https://github.com/scipy/scipy/pull/9721</a>>`__: ENH: Convexhull visiblefacets
* `#9723 <<a href="https://github.com/scipy/scipy/pull/9723" target="_blank">https://github.com/scipy/scipy/pull/9723</a>>`__: BLD: Modify rv_generic._construct_doc to print out failing distribution...
* `#9726 <<a href="https://github.com/scipy/scipy/pull/9726" target="_blank">https://github.com/scipy/scipy/pull/9726</a>>`__: BUG: Fix small issues with \`signal.lfilter'
* `#9729 <<a href="https://github.com/scipy/scipy/pull/9729" target="_blank">https://github.com/scipy/scipy/pull/9729</a>>`__: BUG: Typecheck iterations for binary image operations
* `#9730 <<a href="https://github.com/scipy/scipy/pull/9730" target="_blank">https://github.com/scipy/scipy/pull/9730</a>>`__: ENH: reduce sizeof(NI_WatershedElement) by 20%
* `#9731 <<a href="https://github.com/scipy/scipy/pull/9731" target="_blank">https://github.com/scipy/scipy/pull/9731</a>>`__: ENH: remove suspicious sequence of type castings
* `#9739 <<a href="https://github.com/scipy/scipy/pull/9739" target="_blank">https://github.com/scipy/scipy/pull/9739</a>>`__: BUG: qr_updates fails if u is exactly in span Q
* `#9749 <<a href="https://github.com/scipy/scipy/pull/9749" target="_blank">https://github.com/scipy/scipy/pull/9749</a>>`__: BUG: MapWrapper.__exit__ should terminate
* `#9753 <<a href="https://github.com/scipy/scipy/pull/9753" target="_blank">https://github.com/scipy/scipy/pull/9753</a>>`__: ENH: Added exact computation for Kolmogorov-Smirnov two-sample...
* `#9755 <<a href="https://github.com/scipy/scipy/pull/9755" target="_blank">https://github.com/scipy/scipy/pull/9755</a>>`__: DOC: Added example for signal.impulse, copied from impulse2
* `#9756 <<a href="https://github.com/scipy/scipy/pull/9756" target="_blank">https://github.com/scipy/scipy/pull/9756</a>>`__: DOC: Added docstring example for iirdesign
* `#9757 <<a href="https://github.com/scipy/scipy/pull/9757" target="_blank">https://github.com/scipy/scipy/pull/9757</a>>`__: DOC: Added examples for step functions
* `#9759 <<a href="https://github.com/scipy/scipy/pull/9759" target="_blank">https://github.com/scipy/scipy/pull/9759</a>>`__: ENH: Allow pass_zero to act like btype
* `#9760 <<a href="https://github.com/scipy/scipy/pull/9760" target="_blank">https://github.com/scipy/scipy/pull/9760</a>>`__: DOC: Added docstring for lp2bs
* `#9761 <<a href="https://github.com/scipy/scipy/pull/9761" target="_blank">https://github.com/scipy/scipy/pull/9761</a>>`__: DOC: Added docstring and example for lp2bp
* `#9764 <<a href="https://github.com/scipy/scipy/pull/9764" target="_blank">https://github.com/scipy/scipy/pull/9764</a>>`__: BUG: Catch internal warnings for matrix
* `#9766 <<a href="https://github.com/scipy/scipy/pull/9766" target="_blank">https://github.com/scipy/scipy/pull/9766</a>>`__: ENH: Speed up _gaussian_kernel1d by removing dependence on np.polynomial
* `#9769 <<a href="https://github.com/scipy/scipy/pull/9769" target="_blank">https://github.com/scipy/scipy/pull/9769</a>>`__: BUG: Fix Cubic Spline Read Only issues
* `#9773 <<a href="https://github.com/scipy/scipy/pull/9773" target="_blank">https://github.com/scipy/scipy/pull/9773</a>>`__: DOC: Several docstrings
* `#9774 <<a href="https://github.com/scipy/scipy/pull/9774" target="_blank">https://github.com/scipy/scipy/pull/9774</a>>`__: TST: bump Azure CI OpenBLAS version to match wheels
* `#9775 <<a href="https://github.com/scipy/scipy/pull/9775" target="_blank">https://github.com/scipy/scipy/pull/9775</a>>`__: DOC: Improve clarity of cov_x documentation for scipy.optimize.leastsq
* `#9779 <<a href="https://github.com/scipy/scipy/pull/9779" target="_blank">https://github.com/scipy/scipy/pull/9779</a>>`__: ENH: dual_annealing vectorise visit_fn
* `#9788 <<a href="https://github.com/scipy/scipy/pull/9788" target="_blank">https://github.com/scipy/scipy/pull/9788</a>>`__: TST, BUG: f2py-related issues with NumPy < 1.14.0
* `#9791 <<a href="https://github.com/scipy/scipy/pull/9791" target="_blank">https://github.com/scipy/scipy/pull/9791</a>>`__: BUG: fix amax constraint not enforced in scalar_search_wolfe2
* `#9792 <<a href="https://github.com/scipy/scipy/pull/9792" target="_blank">https://github.com/scipy/scipy/pull/9792</a>>`__: ENH: Allow inplace copying in place in "detrend" function
* `#9795 <<a href="https://github.com/scipy/scipy/pull/9795" target="_blank">https://github.com/scipy/scipy/pull/9795</a>>`__: DOC: Fix/update docstring for dstn and dst
* `#9796 <<a href="https://github.com/scipy/scipy/pull/9796" target="_blank">https://github.com/scipy/scipy/pull/9796</a>>`__: MAINT: Allow None tolerances in least_squares
* `#9798 <<a href="https://github.com/scipy/scipy/pull/9798" target="_blank">https://github.com/scipy/scipy/pull/9798</a>>`__: BUG: fixes abort trap 6 error in scipy issue 9785 in unit tests
* `#9807 <<a href="https://github.com/scipy/scipy/pull/9807" target="_blank">https://github.com/scipy/scipy/pull/9807</a>>`__: MAINT: improve doc and add alternative keyword to wilcoxon in...
* `#9808 <<a href="https://github.com/scipy/scipy/pull/9808" target="_blank">https://github.com/scipy/scipy/pull/9808</a>>`__: Fix PPoly integrate and test for CubicSpline
* `#9810 <<a href="https://github.com/scipy/scipy/pull/9810" target="_blank">https://github.com/scipy/scipy/pull/9810</a>>`__: ENH: Add the geometric standard deviation function
* `#9811 <<a href="https://github.com/scipy/scipy/pull/9811" target="_blank">https://github.com/scipy/scipy/pull/9811</a>>`__: MAINT: remove invalid derphi default None value in scalar_search_wolfe2
* `#9813 <<a href="https://github.com/scipy/scipy/pull/9813" target="_blank">https://github.com/scipy/scipy/pull/9813</a>>`__: Adapt hamming distance in C to support weights
* `#9817 <<a href="https://github.com/scipy/scipy/pull/9817" target="_blank">https://github.com/scipy/scipy/pull/9817</a>>`__: DOC: Copy solver description to solver modules
* `#9829 <<a href="https://github.com/scipy/scipy/pull/9829" target="_blank">https://github.com/scipy/scipy/pull/9829</a>>`__: ENH: Add FOH and equivalent impulse response discretizations...
* `#9831 <<a href="https://github.com/scipy/scipy/pull/9831" target="_blank">https://github.com/scipy/scipy/pull/9831</a>>`__: ENH: Implement RotationSpline
* `#9834 <<a href="https://github.com/scipy/scipy/pull/9834" target="_blank">https://github.com/scipy/scipy/pull/9834</a>>`__: DOC: Change mielke distribution default parameters to ensure...
* `#9838 <<a href="https://github.com/scipy/scipy/pull/9838" target="_blank">https://github.com/scipy/scipy/pull/9838</a>>`__: ENH: Use faster solvers for firls
* `#9854 <<a href="https://github.com/scipy/scipy/pull/9854" target="_blank">https://github.com/scipy/scipy/pull/9854</a>>`__: ENH: loadarff now supports relational attributes.
* `#9856 <<a href="https://github.com/scipy/scipy/pull/9856" target="_blank">https://github.com/scipy/scipy/pull/9856</a>>`__: integrate.bvp - improve handling of nonlinear boundary conditions
* `#9862 <<a href="https://github.com/scipy/scipy/pull/9862" target="_blank">https://github.com/scipy/scipy/pull/9862</a>>`__: TST: reduce Appveyor CI load
* `#9874 <<a href="https://github.com/scipy/scipy/pull/9874" target="_blank">https://github.com/scipy/scipy/pull/9874</a>>`__: DOC: Update requirements in release notes
* `#9883 <<a href="https://github.com/scipy/scipy/pull/9883" target="_blank">https://github.com/scipy/scipy/pull/9883</a>>`__: BUG: fixed parenthesis in spatial.rotation
* `#9884 <<a href="https://github.com/scipy/scipy/pull/9884" target="_blank">https://github.com/scipy/scipy/pull/9884</a>>`__: ENH: Use Sparsity in Clarkson-Woodruff Sketch
* `#9888 <<a href="https://github.com/scipy/scipy/pull/9888" target="_blank">https://github.com/scipy/scipy/pull/9888</a>>`__: MAINT: Replace NumPy aliased functions
* `#9892 <<a href="https://github.com/scipy/scipy/pull/9892" target="_blank">https://github.com/scipy/scipy/pull/9892</a>>`__: BUG: Fix 9890 query_ball_point returns wrong result when p is...
* `#9893 <<a href="https://github.com/scipy/scipy/pull/9893" target="_blank">https://github.com/scipy/scipy/pull/9893</a>>`__: BUG: curve_fit doesn't check for empty input if called with bounds
* `#9894 <<a href="https://github.com/scipy/scipy/pull/9894" target="_blank">https://github.com/scipy/scipy/pull/9894</a>>`__: scipy.signal.find_peaks documentation error
* `#9898 <<a href="https://github.com/scipy/scipy/pull/9898" target="_blank">https://github.com/scipy/scipy/pull/9898</a>>`__: BUG: Set success attribute in OptimizeResult. See #9801
* `#9900 <<a href="https://github.com/scipy/scipy/pull/9900" target="_blank">https://github.com/scipy/scipy/pull/9900</a>>`__: BUG: Restrict rv_generic._argcheck() and its overrides from setting...
* `#9906 <<a href="https://github.com/scipy/scipy/pull/9906" target="_blank">https://github.com/scipy/scipy/pull/9906</a>>`__: fixed a bug in kde logpdf
* `#9911 <<a href="https://github.com/scipy/scipy/pull/9911" target="_blank">https://github.com/scipy/scipy/pull/9911</a>>`__: DOC: replace example for "np.select" with the one from numpy...
* `#9912 <<a href="https://github.com/scipy/scipy/pull/9912" target="_blank">https://github.com/scipy/scipy/pull/9912</a>>`__: BF(DOC): point to numpy.select instead of plain (python) .select
* `#9914 <<a href="https://github.com/scipy/scipy/pull/9914" target="_blank">https://github.com/scipy/scipy/pull/9914</a>>`__: DOC: change ValueError message in _validate_pad of signaltools.
* `#9915 <<a href="https://github.com/scipy/scipy/pull/9915" target="_blank">https://github.com/scipy/scipy/pull/9915</a>>`__: cKDTree query_ball_point improvements
* `#9918 <<a href="https://github.com/scipy/scipy/pull/9918" target="_blank">https://github.com/scipy/scipy/pull/9918</a>>`__: Update ckdtree.pyx with boxsize argument in docstring
* `#9920 <<a href="https://github.com/scipy/scipy/pull/9920" target="_blank">https://github.com/scipy/scipy/pull/9920</a>>`__: BUG: sparse: Validate explicit shape if given with dense argument...
* `#9924 <<a href="https://github.com/scipy/scipy/pull/9924" target="_blank">https://github.com/scipy/scipy/pull/9924</a>>`__: BLD: add back pyproject.toml
* `#9931 <<a href="https://github.com/scipy/scipy/pull/9931" target="_blank">https://github.com/scipy/scipy/pull/9931</a>>`__: Fix empty constraint
* `#9935 <<a href="https://github.com/scipy/scipy/pull/9935" target="_blank">https://github.com/scipy/scipy/pull/9935</a>>`__: DOC: fix references for stats.f_oneway
* `#9936 <<a href="https://github.com/scipy/scipy/pull/9936" target="_blank">https://github.com/scipy/scipy/pull/9936</a>>`__: Revert gh-9619: "FIX: Sparse matrix addition/subtraction eliminates...
* `#9937 <<a href="https://github.com/scipy/scipy/pull/9937" target="_blank">https://github.com/scipy/scipy/pull/9937</a>>`__: MAINT: fix PEP8 issues and update to pycodestyle 2.5.0
* `#9939 <<a href="https://github.com/scipy/scipy/pull/9939" target="_blank">https://github.com/scipy/scipy/pull/9939</a>>`__: DOC: correct \`structure\` description in \`ndimage.label\` docstring
* `#9940 <<a href="https://github.com/scipy/scipy/pull/9940" target="_blank">https://github.com/scipy/scipy/pull/9940</a>>`__: MAINT: remove extraneous distutils copies
* `#9945 <<a href="https://github.com/scipy/scipy/pull/9945" target="_blank">https://github.com/scipy/scipy/pull/9945</a>>`__: ENH: differential_evolution can use Bounds object
* `#9949 <<a href="https://github.com/scipy/scipy/pull/9949" target="_blank">https://github.com/scipy/scipy/pull/9949</a>>`__: Added 'std' to add doctstrings since it is a \`known_stats\`...
* `#9953 <<a href="https://github.com/scipy/scipy/pull/9953" target="_blank">https://github.com/scipy/scipy/pull/9953</a>>`__: DOC: Documentation cleanup for stats tutorials.
* `#9962 <<a href="https://github.com/scipy/scipy/pull/9962" target="_blank">https://github.com/scipy/scipy/pull/9962</a>>`__: __repr__ for Bounds
* `#9971 <<a href="https://github.com/scipy/scipy/pull/9971" target="_blank">https://github.com/scipy/scipy/pull/9971</a>>`__: ENH: Improve performance of lsmr
* `#9987 <<a href="https://github.com/scipy/scipy/pull/9987" target="_blank">https://github.com/scipy/scipy/pull/9987</a>>`__: CI: pin Sphinx version to 1.8.5
* `#9990 <<a href="https://github.com/scipy/scipy/pull/9990" target="_blank">https://github.com/scipy/scipy/pull/9990</a>>`__: ENH: constraint violation
* `#9991 <<a href="https://github.com/scipy/scipy/pull/9991" target="_blank">https://github.com/scipy/scipy/pull/9991</a>>`__: BUG: Avoid inplace modification of input array in newton
* `#9995 <<a href="https://github.com/scipy/scipy/pull/9995" target="_blank">https://github.com/scipy/scipy/pull/9995</a>>`__: MAINT: sparse.csgraph: Add cdef to stop build warning.
* `#9996 <<a href="https://github.com/scipy/scipy/pull/9996" target="_blank">https://github.com/scipy/scipy/pull/9996</a>>`__: BUG: Make minimize_quadratic_1d work with infinite bounds correctly
* `#10004 <<a href="https://github.com/scipy/scipy/pull/10004" target="_blank">https://github.com/scipy/scipy/pull/10004</a>>`__: BUG: Fix unbound local error in linprog - simplex.
* `#10007 <<a href="https://github.com/scipy/scipy/pull/10007" target="_blank">https://github.com/scipy/scipy/pull/10007</a>>`__: BLD: fix Python 3.7 build with build isolation
* `#10009 <<a href="https://github.com/scipy/scipy/pull/10009" target="_blank">https://github.com/scipy/scipy/pull/10009</a>>`__: BUG: Make sure that _binary_erosion only accepts an integer number...
* `#10016 <<a href="https://github.com/scipy/scipy/pull/10016" target="_blank">https://github.com/scipy/scipy/pull/10016</a>>`__: Update link to airspeed-velocity
* `#10017 <<a href="https://github.com/scipy/scipy/pull/10017" target="_blank">https://github.com/scipy/scipy/pull/10017</a>>`__: DOC: Update \`interpolate.LSQSphereBivariateSpline\` to include...
* `#10018 <<a href="https://github.com/scipy/scipy/pull/10018" target="_blank">https://github.com/scipy/scipy/pull/10018</a>>`__: MAINT: special: Fix a few warnings that occur when compiling...
* `#10019 <<a href="https://github.com/scipy/scipy/pull/10019" target="_blank">https://github.com/scipy/scipy/pull/10019</a>>`__: TST: Azure summarizes test failures
* `#10021 <<a href="https://github.com/scipy/scipy/pull/10021" target="_blank">https://github.com/scipy/scipy/pull/10021</a>>`__: ENH: Introduce CubicHermiteSpline
* `#10022 <<a href="https://github.com/scipy/scipy/pull/10022" target="_blank">https://github.com/scipy/scipy/pull/10022</a>>`__: BENCH: Increase cython version in asv to fix benchmark builds
* `#10023 <<a href="https://github.com/scipy/scipy/pull/10023" target="_blank">https://github.com/scipy/scipy/pull/10023</a>>`__: BUG: Avoid exponnorm producing nan for small K values.
* `#10025 <<a href="https://github.com/scipy/scipy/pull/10025" target="_blank">https://github.com/scipy/scipy/pull/10025</a>>`__: BUG: optimize: tweaked linprog status 4 error message
* `#10026 <<a href="https://github.com/scipy/scipy/pull/10026" target="_blank">https://github.com/scipy/scipy/pull/10026</a>>`__: ENH: optimize: use SuiteSparse in linprog interior-point when...
* `#10027 <<a href="https://github.com/scipy/scipy/pull/10027" target="_blank">https://github.com/scipy/scipy/pull/10027</a>>`__: MAINT: cluster: clean up the use of malloc() in the function...
* `#10028 <<a href="https://github.com/scipy/scipy/pull/10028" target="_blank">https://github.com/scipy/scipy/pull/10028</a>>`__: Fix rotate invalid plane check
* `#10040 <<a href="https://github.com/scipy/scipy/pull/10040" target="_blank">https://github.com/scipy/scipy/pull/10040</a>>`__: MAINT: fix pratt method of wilcox test in scipy.stats
* `#10041 <<a href="https://github.com/scipy/scipy/pull/10041" target="_blank">https://github.com/scipy/scipy/pull/10041</a>>`__: MAINT: special: Fix a warning generated when building the AMOS...
* `#10044 <<a href="https://github.com/scipy/scipy/pull/10044" target="_blank">https://github.com/scipy/scipy/pull/10044</a>>`__: DOC: fix up spatial.transform.Rotation docstrings
* `#10047 <<a href="https://github.com/scipy/scipy/pull/10047" target="_blank">https://github.com/scipy/scipy/pull/10047</a>>`__: MAINT: interpolate: Fix a few build warnings.
* `#10051 <<a href="https://github.com/scipy/scipy/pull/10051" target="_blank">https://github.com/scipy/scipy/pull/10051</a>>`__: Add project_urls to setup
* `#10052 <<a href="https://github.com/scipy/scipy/pull/10052" target="_blank">https://github.com/scipy/scipy/pull/10052</a>>`__: don't set flag to "converged" if max iter exceeded
* `#10054 <<a href="https://github.com/scipy/scipy/pull/10054" target="_blank">https://github.com/scipy/scipy/pull/10054</a>>`__: MAINT: signal: Fix a few build warnings and modernize some C...
* `#10056 <<a href="https://github.com/scipy/scipy/pull/10056" target="_blank">https://github.com/scipy/scipy/pull/10056</a>>`__: BUG: Ensure factorial is not too large in kendaltau
* `#10058 <<a href="https://github.com/scipy/scipy/pull/10058" target="_blank">https://github.com/scipy/scipy/pull/10058</a>>`__: Small speedup in samping from ortho and special_ortho groups
* `#10059 <<a href="https://github.com/scipy/scipy/pull/10059" target="_blank">https://github.com/scipy/scipy/pull/10059</a>>`__: BUG: optimize: fix #10038 by increasing tol
* `#10061 <<a href="https://github.com/scipy/scipy/pull/10061" target="_blank">https://github.com/scipy/scipy/pull/10061</a>>`__: BLD: DOC: make building docs easier by parsing python version.
* `#10064 <<a href="https://github.com/scipy/scipy/pull/10064" target="_blank">https://github.com/scipy/scipy/pull/10064</a>>`__: ENH: Significant speedup for ortho and special ortho group
* `#10065 <<a href="https://github.com/scipy/scipy/pull/10065" target="_blank">https://github.com/scipy/scipy/pull/10065</a>>`__: DOC: Reword parameter descriptions in \`optimize.root_scalar\`
* `#10066 <<a href="https://github.com/scipy/scipy/pull/10066" target="_blank">https://github.com/scipy/scipy/pull/10066</a>>`__: BUG: signal: Fix error raised by savgol_coeffs when deriv > polyorder.
* `#10067 <<a href="https://github.com/scipy/scipy/pull/10067" target="_blank">https://github.com/scipy/scipy/pull/10067</a>>`__: MAINT: Fix the cutoff value inconsistency for pinv2 and pinvh
* `#10072 <<a href="https://github.com/scipy/scipy/pull/10072" target="_blank">https://github.com/scipy/scipy/pull/10072</a>>`__: BUG: stats: Fix boxcox_llf to avoid loss of precision.
* `#10075 <<a href="https://github.com/scipy/scipy/pull/10075" target="_blank">https://github.com/scipy/scipy/pull/10075</a>>`__: ENH: Add wrappers for ?syconv routines
* `#10076 <<a href="https://github.com/scipy/scipy/pull/10076" target="_blank">https://github.com/scipy/scipy/pull/10076</a>>`__: BUG: optimize: fix curve_fit for mixed float32/float64 input
* `#10077 <<a href="https://github.com/scipy/scipy/pull/10077" target="_blank">https://github.com/scipy/scipy/pull/10077</a>>`__: DOC: Replace undefined \`k\` in \`interpolate.splev\` docstring
* `#10079 <<a href="https://github.com/scipy/scipy/pull/10079" target="_blank">https://github.com/scipy/scipy/pull/10079</a>>`__: DOC: Fixed typo, rearranged some doc of stats.morestats.wilcoxon.
* `#10080 <<a href="https://github.com/scipy/scipy/pull/10080" target="_blank">https://github.com/scipy/scipy/pull/10080</a>>`__: TST: install scikit-sparse for full TravisCI tests
* `#10083 <<a href="https://github.com/scipy/scipy/pull/10083" target="_blank">https://github.com/scipy/scipy/pull/10083</a>>`__: Clean \`\`_clean_inputs\`\` in optimize.linprog
* `#10088 <<a href="https://github.com/scipy/scipy/pull/10088" target="_blank">https://github.com/scipy/scipy/pull/10088</a>>`__: ENH: optimize: linprog test CHOLMOD/UMFPACK solvers when available
* `#10090 <<a href="https://github.com/scipy/scipy/pull/10090" target="_blank">https://github.com/scipy/scipy/pull/10090</a>>`__: MAINT: Fix CubicSplinerInterpolator for pandas
* `#10091 <<a href="https://github.com/scipy/scipy/pull/10091" target="_blank">https://github.com/scipy/scipy/pull/10091</a>>`__: MAINT: improve logcdf and logsf of hypergeometric distribution
* `#10095 <<a href="https://github.com/scipy/scipy/pull/10095" target="_blank">https://github.com/scipy/scipy/pull/10095</a>>`__: MAINT: Clean \`\`_clean_inputs\`\` in linprog

Checksums
=========

MD5
~~~

5a71a217fa4ff372097f501daf816f3b  scipy-1.3.0rc1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_int
el.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
c154ca8eee9ebafe04575b316e41ed85  scipy-1.3.0rc1-cp35-cp35m-manylinux1_i686.whl
36a91fa4ae6eeceeb79bf97b9bd013eb  scipy-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl
f1f4259b373332d6edc6bef123b0dc7c  scipy-1.3.0rc1-cp35-cp35m-win32.whl
c81d78bed8e2176cf0168785b7e1b692  scipy-1.3.0rc1-cp35-cp35m-win_amd64.whl
c43dd24f349c9d37a6c996e7c0674141  scipy-1.3.0rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_int
el.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
8188210e0fd710f4544f314306b76313  scipy-1.3.0rc1-cp36-cp36m-manylinux1_i686.whl
0cf317ee185a8f5736b479d1c8b5f415  scipy-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl
e46e5b38288d79321d8d6ffa15a8f54e  scipy-1.3.0rc1-cp36-cp36m-win32.whl
85a79e9be408de72056c6efc1eef7d46  scipy-1.3.0rc1-cp36-cp36m-win_amd64.whl
2436169658f74e03b4037142e51a8f86  scipy-1.3.0rc1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_int
el.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
1b9e2caa5994ee227b4ad8e46b45ad7e  scipy-1.3.0rc1-cp37-cp37m-manylinux1_i686.whl
05a51b40471abdf4e9020183ad449bf2  scipy-1.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl
debecbc0e54fe4e737971b0a6d9f24f5  scipy-1.3.0rc1-cp37-cp37m-win32.whl
79c725144fa59566d8ebd3bf556533aa  scipy-1.3.0rc1-cp37-cp37m-win_amd64.whl
0b9fa3583bcf2c8190b277cddb287132  scipy-1.3.0rc1.tar.gz
d22a40e138ecd6bb26990e22d4a1ac1b  scipy-1.3.0rc1.tar.xz
9cc12f26980587900befabafaac2078b  scipy-1.3.0rc1.zip
             
</span></font></pre><pre><font color="#000000"><span style="white-space:pre-wrap">SHA256                                                                                       ~~~~~~                                                                                                                                                                                    3491e5453acec48ff8bc1e96980a9ca225bf653eb8e2fad2efe44ca54fd61230  scipy-1.3.0rc1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl                                                                                          b04fed432d0d2b7aa52fb83c87390f22e34407baa404385e6c804c6d2f9fe3dc  scipy-1.3.0rc1-cp35-cp35m-manylinux1_i686.whl                                                                           71c236d8b036caa84a018b056c6ced101bcb3efb160fab18957daf5a41c7319c  scipy-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl                                                                         6fa6a341ab6920f9233ce5da16572e3e403540f90c17269e27a7a7451e05d40e  scipy-1.3.0rc1-cp35-cp35m-win32.whl                                                                                     7ec09797276d26c74234c056415234a7168e536011767af984b1700410806699  scipy-1.3.0rc1-cp35-cp35m-win_amd64.whl                                                                                 55fcdd1ea9bb3d5461477391d924e24c56c8fa3cb3aba98c2ee2c47e3ccd6ce2  scipy-1.3.0rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl                                                                                          b149d330d0a8219b68d2839cc49a37df163b0ec0b56194f8f0aa6878c1e7c2a4  scipy-1.3.0rc1-cp36-cp36m-manylinux1_i686.whl                                                                           9fed021210077c2e183f621d84bef428762b0b226f8f6da2b03a7d93628e3089  scipy-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl                                                                         5c9c9a47e914fbf8edc9a1da1e10a9f5204b3dfc89c93b721b658290884bfe45  scipy-1.3.0rc1-cp36-cp36m-win32.whl                                                                                     09b2c3e099b6274b142e7e05132e79efbbe4daa9dd593a226a3bc9820adf966a  scipy-1.3.0rc1-cp36-cp36m-win_amd64.whl                                                                                 4e93edc6d4c1296ac39ae4be2e8d9336a37a3e5c6e104801a288db0f18d5dbd1  scipy-1.3.0rc1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl                                                                                          1edafef721c859848b8575e7313fba062903f3c256661304f488b96fff4f759d  scipy-1.3.0rc1-cp37-cp37m-manylinux1_i686.whl                                                                           2fe186fff442d3f54f8e6950e809c571ea29db8333ed30608c4074a843d5cdf1  scipy-1.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl                                                                         7c59ec7d5148538978da6c66059c9e3240ae9cf17b803b15354fffc8d3320961  scipy-1.3.0rc1-cp37-cp37m-win32.whl         
2ab6d6f940b6b09cbee6d7cb2de5914a50f459cbc612b4328b033f67452fd1d6  scipy-1.3.0rc1-cp37-cp37m-win_amd64.whl
d09e6fae7434aa9e1422d95bbee28f0b66ba97ab770fec24f31c75a873823cd6  scipy-1.3.0rc1.tar.gz
ba49645a693f6e70e690cf6e2175865b7bf0182cf59bdce872968f47546f4269  scipy-1.3.0rc1.tar.xz
f1cdb4651f3d150f5c145dc930a627f09aa2afc5275c6c5da97a9a5df274c531  scipy-1.3.0rc1.zip
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJcw54gAAoJELD/41ZX0J71zbEQAKaapoUb0gbLvljeLL+FZmaZ
Ha8OecYf7Fsdgj9kiGk2kKgrvz5nkoRyJDpxi4BOzPua+HBUhECoH3DBL5kA6sbv
VsMAhTb5HFPiKmC78LHEUNSY1fPJrdK7s99pIgedjQFR5diODHqqtB54awbRsTOs
Vdq45I7JoCd+DUMqQWIA3TZyjrZzw2V1KBFS8mHFdcop71Q1RqRNf3rVw7Rpydob
uegbae42cJ2Hej4+viU8hsCM+JIgkCuZaQEN2wp4W9pmHsDCzJcoyQjulTjZQAeG
W3L/F5O1p9A9nHIPk+wvS3D2ageKOhYmVSgB6dznXnFRsjwIKH4O4k0TCzYAamsd
HvcKnncGAzc+95o2k+v46575O3pBPRYCmOKz6LlFfFGNr/PWkxPYuG49nGIwQZU+
/w0RYvu2NIPyd05gQQfwyEAATmwbYQfCelbQtHtPehDrtwMINZF4ZCqVg8D7d2ns
c2mUUC72Iq62R17CdQOjp/zkvU4Xo6KGm0TPQY7xuJwXOaiM5cJ49iY+/Z6eBfBM
JS0MoIZ8PRzhzQ6gKTPt4exil75ybNpCeL/Ny/LY5dgkfaOdTuplmxwxgngxaECG
W4SaGw4P0SiATwyz7hMprv/Xkq59iK6IsF6Ki7uxPuMps+nbYhvVIUXqh8Y5iVxx
piFfF2ct8rgxkVm3qBmN
=KK2K
-----END PGP SIGNATURE-----           <br></span></font></pre></div></div></div></div></div></div>
_______________________________________________<br>
SciPy-Dev mailing list<br>
<a href="mailto:SciPy-Dev@python.org" target="_blank">SciPy-Dev@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/scipy-dev" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/scipy-dev</a><br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div><span style="font-size:12.8px">Mark Mikofski, PhD (2005)</span><br></div><div><span style="font-size:12.8px"><i>Fiat Lux</i></span><br></div></div></div></div>