Skip to content

Commit

Permalink
DOC: PR 20375 revisions
Browse files Browse the repository at this point in the history
* Fix a few typos and add a missing comment based
on code review.

[docs only]
  • Loading branch information
tylerjereddy committed Apr 2, 2024
1 parent 2431661 commit 4cbb9e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/release/1.13.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ New features
- The Modified Akima Interpolation has been added to
``interpolate.Akima1DInterpolator``, available via the new ``method``
argument.
- New method ``BSpline.insert_knot`` inserts a knot into a ``BSpline` instance.
- New method ``BSpline.insert_knot`` inserts a knot into a ``BSpline`` instance.
This routine is similar to the module-level `scipy.interpolate.insert`
function, and works with the BSpline objects instead of ``tck`` tuples.
- ``RegularGridInterpolator`` gained the functionality to compute derivatives
Expand Down Expand Up @@ -326,7 +326,7 @@ Issues closed for 1.13.0
* `#19774 <https://github.com/scipy/scipy/issues/19774>`__: DOC: Detail what "concatenate" means in the context of \`spatial.transform.Rotation.concatenate\`
* `#19799 <https://github.com/scipy/scipy/issues/19799>`__: DOC: array types: update array validation guidance
* `#19813 <https://github.com/scipy/scipy/issues/19813>`__: BUG: typo in specfun.f?
* `#19819 <https://github.com/scipy/scipy/issues/19819>`__: BUG: In RPFInterpolator, wrong warning message if degree=-1
* `#19819 <https://github.com/scipy/scipy/issues/19819>`__: BUG: In RBFInterpolator, wrong warning message if degree=-1
* `#19831 <https://github.com/scipy/scipy/issues/19831>`__: Test failures with OpenBLAS 0.3.26
* `#19835 <https://github.com/scipy/scipy/issues/19835>`__: DOC: \`fft\` missing from list of subpackages
* `#19836 <https://github.com/scipy/scipy/issues/19836>`__: DOC: remove incorrect sentence about subpackage imports
Expand Down
3 changes: 3 additions & 0 deletions tools/openblas_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ def get_members():
def reformat_pkg_file(target_path):
# attempt to deal with:
# https://github.com/scipy/scipy/pull/20362#issuecomment-2028517797
# NOTE: this machinery can be removed in the future because the
# problem is a simple typo fixed upstream now at:
# https://github.com/OpenMathLib/OpenBLAS/pull/4594
for root, dirs, files in os.walk(target_path):
for name in files:
if name.endswith(".pc") and "openblas" in name:
Expand Down

0 comments on commit 4cbb9e8

Please sign in to comment.