Closed renovate[bot] closed 2 years ago
Merging #902 (ec77c82) into main (00d1c18) will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## main #902 +/- ##
=======================================
Coverage 84.06% 84.06%
=======================================
Files 9 9
Lines 885 885
=======================================
Hits 744 744
Misses 141 141
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 00d1c18...ec77c82. Read the comment docs.
This PR contains the following updates:
==1.8.1
->==1.9.0
Release Notes
scipy/scipy
### [`v1.9.0`](https://togithub.com/scipy/scipy/releases/tag/v1.9.0) [Compare Source](https://togithub.com/scipy/scipy/compare/v1.8.1...v1.9.0) # SciPy 1.9.0 Release Notes SciPy `1.9.0` is the culmination of 6 months of hard work. It contains many new features, numerous bug-fixes, improved test coverage and better documentation. There have been a number of deprecations and 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.9.x branch, and on adding new features on the main branch. This release requires Python `3.8-3.11` and NumPy `1.18.5` or greater. For running on PyPy, PyPy3 `6.0+` is required. # Highlights of this release - We have modernized our build system to use `meson`, substantially improving our build performance, and providing better build-time configuration and cross-compilation support, - Added `scipy.optimize.milp`, new function for mixed-integer linear programming, - Added `scipy.stats.fit` for fitting discrete and continuous distributions to data, - Tensor-product spline interpolation modes were added to `scipy.interpolate.RegularGridInterpolator`, - A new global optimizer (DIviding RECTangles algorithm) `scipy.optimize.direct`. # New features # `scipy.interpolate` improvements - Speed up the `RBFInterpolator` evaluation with high dimensional interpolants. - Added new spline based interpolation methods for `scipy.interpolate.RegularGridInterpolator` and its tutorial. - `scipy.interpolate.RegularGridInterpolator` and `scipy.interpolate.interpn` now accept descending ordered points. - `RegularGridInterpolator` now handles length-1 grid axes. - The `BivariateSpline` subclasses have a new method `partial_derivative` which constructs a new spline object representing a derivative of an original spline. This mirrors the corresponding functionality for univariate splines, `splder` and `BSpline.derivative`, and can substantially speed up repeated evaluation of derivatives. # `scipy.linalg` improvements - `scipy.linalg.expm` now accepts nD arrays. Its speed is also improved. - Minimum required LAPACK version is bumped to `3.7.1`. # `scipy.fft` improvements - Added `uarray` multimethods for `scipy.fft.fht` and `scipy.fft.ifht` to allow provision of third party backend implementations such as those recently added to CuPy. # `scipy.optimize` improvements - A new global optimizer, `scipy.optimize.direct` (DIviding RECTangles algorithm) was added. For problems with inexpensive function evaluations, like the ones in the SciPy benchmark suite, `direct` is competitive with the best other solvers in SciPy (`dual_annealing` and `differential_evolution`) in terms of execution time. See `gh-14300Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone America/New_York, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.