Bump numpy from 1.21.4 to 1.23.4 #110

Closed
dependabot[bot] wants to merge 1 commits from dependabot-pip-numpy-1.23.4 into master
dependabot[bot] commented 2022-10-13 00:03:20 +02:00 (Migrated from github.com)

Bumps numpy from 1.21.4 to 1.23.4.

Release notes

Sourced from numpy's releases.

v1.23.4

NumPy 1.23.4 Release Notes

NumPy 1.23.4 is a maintenance release that fixes bugs discovered after the 1.23.3 release and keeps the build infrastructure current. The main improvements are fixes for some annotation corner cases, a fix for a long time nested_iters memory leak, and a fix of complex vector dot for very large arrays. The Python versions supported for this release are 3.8-3.11.

Note that the mypy version needs to be 0.981+ if you test using Python 3.10.7, otherwise the typing tests will fail.

Contributors

A total of 8 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • Bas van Beek
  • Charles Harris
  • Matthew Barber
  • Matti Picus
  • Ralf Gommers
  • Ross Barnowski
  • Sebastian Berg
  • Sicheng Zeng +

Pull requests merged

A total of 13 pull requests were merged for this release.

  • #22368: BUG: Add __array_api_version__ to numpy.array_api namespace
  • #22370: MAINT: update sde toolkit to 9.0, fix download link
  • #22382: BLD: use macos-11 image on azure, macos-1015 is deprecated
  • #22383: MAINT: random: remove get_info from "extending with Cython"...
  • #22384: BUG: Fix complex vector dot with more than NPY_CBLAS_CHUNK elements
  • #22387: REV: Loosen lookfor's import try/except again
  • #22388: TYP,ENH: Mark numpy.typing protocols as runtime checkable
  • #22389: TYP,MAINT: Change more overloads to play nice with pyright
  • #22390: TST,TYP: Bump mypy to 0.981
  • #22391: DOC: Update delimiter param description.
  • #22392: BUG: Memory leaks in numpy.nested_iters
  • #22413: REL: Prepare for the NumPy 1.23.4 release.
  • #22424: TST: Fix failing aarch64 wheel builds.

Checksums

MD5

90a3d95982490cfeeef22c0f7cbd874f  numpy-1.23.4-cp310-cp310-macosx_10_9_x86_64.whl

... (truncated)

Commits
  • f802155 Merge pull request #22425 from charris/prepare-1.23.4-release_1
  • 298174b REL: Prepare for the NumPy 1.23.4 release (1)
  • 631072f Merge pull request #22424 from charris/backport-22418
  • f4a3195 TST, BLD: Fix failing aarch64 wheel builds.
  • 1cbd127 Merge pull request #22413 from charris/prepare-for-1.23.4
  • 8cfc899 REL: Prepare for the NumPy 1.23.4 release.
  • 22a41b5 Merge pull request #22392 from charris/backport-22296
  • f6a3c11 Adding missing Py_DECREF call on iter
  • 8274a16 Merge pull request #22391 from charris/backport-22372
  • fa16a0c Merge pull request #22390 from charris/backport-22360
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [numpy](https://github.com/numpy/numpy) from 1.21.4 to 1.23.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></p> <blockquote> <h2>v1.23.4</h2> <h1>NumPy 1.23.4 Release Notes</h1> <p>NumPy 1.23.4 is a maintenance release that fixes bugs discovered after the 1.23.3 release and keeps the build infrastructure current. The main improvements are fixes for some annotation corner cases, a fix for a long time <code>nested_iters</code> memory leak, and a fix of complex vector dot for very large arrays. The Python versions supported for this release are 3.8-3.11.</p> <p>Note that the mypy version needs to be 0.981+ if you test using Python 3.10.7, otherwise the typing tests will fail.</p> <h2>Contributors</h2> <p>A total of 8 people contributed to this release. People with a &quot;+&quot; by their names contributed a patch for the first time.</p> <ul> <li>Bas van Beek</li> <li>Charles Harris</li> <li>Matthew Barber</li> <li>Matti Picus</li> <li>Ralf Gommers</li> <li>Ross Barnowski</li> <li>Sebastian Berg</li> <li>Sicheng Zeng +</li> </ul> <h2>Pull requests merged</h2> <p>A total of 13 pull requests were merged for this release.</p> <ul> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22368">#22368</a>: BUG: Add <code>__array_api_version__</code> to <code>numpy.array_api</code> namespace</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22370">#22370</a>: MAINT: update sde toolkit to 9.0, fix download link</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22382">#22382</a>: BLD: use macos-11 image on azure, macos-1015 is deprecated</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22383">#22383</a>: MAINT: random: remove <code>get_info</code> from &quot;extending with Cython&quot;...</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22384">#22384</a>: BUG: Fix complex vector dot with more than NPY_CBLAS_CHUNK elements</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22387">#22387</a>: REV: Loosen <code>lookfor</code>'s import try/except again</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22388">#22388</a>: TYP,ENH: Mark <code>numpy.typing</code> protocols as runtime checkable</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22389">#22389</a>: TYP,MAINT: Change more overloads to play nice with pyright</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22390">#22390</a>: TST,TYP: Bump mypy to 0.981</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22391">#22391</a>: DOC: Update delimiter param description.</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22392">#22392</a>: BUG: Memory leaks in numpy.nested_iters</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22413">#22413</a>: REL: Prepare for the NumPy 1.23.4 release.</li> <li><a href="https://github-redirect.dependabot.com/numpy/numpy/pull/22424">#22424</a>: TST: Fix failing aarch64 wheel builds.</li> </ul> <h2>Checksums</h2> <h3>MD5</h3> <pre><code>90a3d95982490cfeeef22c0f7cbd874f numpy-1.23.4-cp310-cp310-macosx_10_9_x86_64.whl </code></pre> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/numpy/numpy/commit/f8021557bb402c514d8be5a9f005c1565fd57eb8"><code>f802155</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/numpy/numpy/issues/22425">#22425</a> from charris/prepare-1.23.4-release_1</li> <li><a href="https://github.com/numpy/numpy/commit/298174b0d13d3aa2fd14e5f8a7168ec0c400f72f"><code>298174b</code></a> REL: Prepare for the NumPy 1.23.4 release (1)</li> <li><a href="https://github.com/numpy/numpy/commit/631072f025c8e048643f4445b067877295c21cbf"><code>631072f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/numpy/numpy/issues/22424">#22424</a> from charris/backport-22418</li> <li><a href="https://github.com/numpy/numpy/commit/f4a3195cc1a8b54deb213fc3056aa4d827a86017"><code>f4a3195</code></a> TST, BLD: Fix failing aarch64 wheel builds.</li> <li><a href="https://github.com/numpy/numpy/commit/1cbd12765a3d3301d424df5251bc92f7fcd10756"><code>1cbd127</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/numpy/numpy/issues/22413">#22413</a> from charris/prepare-for-1.23.4</li> <li><a href="https://github.com/numpy/numpy/commit/8cfc899f74db48698c5739a672c3539b96127b63"><code>8cfc899</code></a> REL: Prepare for the NumPy 1.23.4 release.</li> <li><a href="https://github.com/numpy/numpy/commit/22a41b5f3bcf34ac91b89c082c4531433646270b"><code>22a41b5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/numpy/numpy/issues/22392">#22392</a> from charris/backport-22296</li> <li><a href="https://github.com/numpy/numpy/commit/f6a3c119dabe1173ebe0d06a3472577b6405a042"><code>f6a3c11</code></a> Adding missing Py_DECREF call on iter</li> <li><a href="https://github.com/numpy/numpy/commit/8274a16bd4434405597f32aacaf8a53002718fc5"><code>8274a16</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/numpy/numpy/issues/22391">#22391</a> from charris/backport-22372</li> <li><a href="https://github.com/numpy/numpy/commit/fa16a0ca51ef0654f541fcf6fa8d30f0f6263a94"><code>fa16a0c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/numpy/numpy/issues/22390">#22390</a> from charris/backport-22360</li> <li>Additional commits viewable in <a href="https://github.com/numpy/numpy/compare/v1.21.4...v1.23.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=numpy&package-manager=pip&previous-version=1.21.4&new-version=1.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
chychkan (Migrated from github.com) reviewed 2022-10-13 00:03:20 +02:00
dependabot[bot] commented 2022-11-21 23:04:00 +01:00 (Migrated from github.com)

Superseded by #114.

Superseded by #114.

Pull request closed

Sign in to join this conversation.