fix(deps): Update dependency numpy to v1.26.1#76
Merged
kodiakhq[bot] merged 1 commit intomainfrom Nov 1, 2023
Merged
Conversation
kodiakhq bot
pushed a commit
that referenced
this pull request
Nov 10, 2023
🤖 I have created a release *beep* *boop* --- ## [0.1.8](v0.1.7...v0.1.8) (2023-11-10) ### Bug Fixes * **deps:** Update `pyarrow` to `v14.0.1` [SECURITY] ([#83](#83)) ([36f52e3](36f52e3)) * **deps:** Update dependency black to v23.10.1 ([#80](#80)) ([e096751](e096751)) * **deps:** Update dependency cloudquery-plugin-pb to v0.0.20 ([#82](#82)) ([ea4b0b0](ea4b0b0)) * **deps:** Update dependency grpcio to v1.59.2 ([#73](#73)) ([d0775b0](d0775b0)) * **deps:** Update dependency grpcio-tools to v1.59.2 ([#74](#74)) ([8626aa2](8626aa2)) * **deps:** Update dependency numpy to v1.26.1 ([#76](#76)) ([3a3a2be](3a3a2be)) * **deps:** Update dependency packaging to v23.2 ([#81](#81)) ([956db38](956db38)) * **deps:** Update dependency pandas to v2.1.2 ([#77](#77)) ([1e3d7da](1e3d7da)) * **deps:** Update dependency protobuf to v4.24.4 ([#78](#78)) ([8c68799](8c68799)) * **deps:** Update dependency pytest to v7.4.3 ([#79](#79)) ([2bda782](2bda782)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.26.0->==1.26.1Release Notes
numpy/numpy (numpy)
v1.26.1Compare Source
NumPy 1.26.1 Release Notes
NumPy 1.26.1 is a maintenance release that fixes bugs and regressions
discovered after the 1.26.0 release. In addition, it adds new
functionality for detecting BLAS and LAPACK when building from source.
Highlights are:
The 1.26.release series is the last planned minor release series before
NumPy 2.0. The Python versions supported by this release are 3.9-3.12.
Build system changes
Improved BLAS/LAPACK detection and control
Auto-detection for a number of BLAS and LAPACK is now implemented for
Meson. By default, the build system will try to detect MKL, Accelerate
(on macOS >=13.3), OpenBLAS, FlexiBLAS, BLIS and reference BLAS/LAPACK.
Support for MKL was significantly improved, and support for FlexiBLAS
was added.
New command-line flags are available to further control the selection of
the BLAS and LAPACK libraries to build against.
To select a specific library, use the config-settings interface via
piporpypa/build. E.g., to selectlibblas/liblapack, use:This works not only for the libraries named above, but for any library
that Meson is able to detect with the given name through
pkg-configorCMake.
Besides
-Dblasand-Dlapack, a number of other new flags areavailable to control BLAS/LAPACK selection and behavior:
-Dblas-orderand-Dlapack-order: a list of library names tosearch for in order, overriding the default search order.
-Duse-ilp64: if set totrue, use ILP64 (64-bit integer) BLAS andLAPACK. Note that with this release, ILP64 support has been extended
to include MKL and FlexiBLAS. OpenBLAS and Accelerate were supported
in previous releases.
-Dallow-noblas: if set totrue, allow NumPy to build with itsinternal (very slow) fallback routines instead of linking against an
external BLAS/LAPACK library. The default for this flag may be
changed to ``true`` in a future 1.26.x release, however for
1.26.1 we'd prefer to keep it as ``false`` because if failures
to detect an installed library are happening, we'd like a bug
report for that, so we can quickly assess whether the new
auto-detection machinery needs further improvements.
-Dmkl-threading: to select the threading layer for MKL. There arefour options:
seq,iomp,gompandtbb. The default isauto, which selects from those four as appropriate given theversion of MKL selected.
-Dblas-symbol-suffix: manually select the symbol suffix to use forthe library - should only be needed for linking against libraries
built in a non-standard way.
New features
numpy._coresubmodule stubsnumpy._coresubmodule stubs were added to provide compatibility withpickled arrays created using NumPy 2.0 when running Numpy 1.26.
Contributors
A total of 13 people contributed to this release. People with a "+" by
their names contributed a patch for the first time.
Pull requests merged
A total of 20 pull requests were merged for this release.
-march=native...use-compute-creditsfor Cirrus.NumpyUnpicklerfor backportingnumpy._corestubs. RemoveNumpyUnpicklerChecksums
MD5
SHA256
Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), 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 Renovate Bot.