Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2025

Updates the requirements on h5py to permit the latest version.

Release notes

Sourced from h5py's releases.

3.15.0

See https://docs.h5py.org/en/latest/whatsnew/3.15.html for release notes

Commits
  • 4e8866a Merge pull request #2719 from neutrinoceros/whl/bump-macosx-deployment-targets
  • c193adc WHL: match runner images macosx versions in MACOSX_DEPLOYMENT_TARGET
  • 1b3c7c3 Merge pull request #2716 from takluyver/prepare-3.15
  • 9a1dd42 Mention vlen conversion fix in release notes
  • fa6ffe9 Merge pull request #2718 from neutrinoceros/mnt/upgrade-cibuildwheel
  • b8bb137 Merge pull request #2717 from takluyver/vlen-empty-array
  • c51a46b Rearrange test code for clarity
  • e7c36e9 CLN: cleanup now-unnecessary cibuildwheel override
  • 5be8725 DEP: manually upgrade cibuildwheel action
  • f460bf4 Fix reading length 0 vlen entry with compound dtype of basic types
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Updates the requirements on [h5py](https://github.com/h5py/h5py) to permit the latest version.
- [Release notes](https://github.com/h5py/h5py/releases)
- [Changelog](https://github.com/h5py/h5py/blob/master/docs/release_guide.rst)
- [Commits](h5py/h5py@3.1.0...3.15.0)

---
updated-dependencies:
- dependency-name: h5py
  dependency-version: 3.15.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner October 14, 2025 07:08
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 14, 2025
@github-actions github-actions bot added the category: dependency_changes Pull requests that update a dependency file label Oct 14, 2025
@sys-openvino-ci sys-openvino-ci added the ExternalPR External contributor label Oct 14, 2025
@p-wysocki p-wysocki enabled auto-merge December 22, 2025 09:00
@p-wysocki p-wysocki added this pull request to the merge queue Dec 29, 2025
Merged via the queue into master with commit 2471866 Dec 29, 2025
208 checks passed
@p-wysocki p-wysocki deleted the dependabot/pip/tests/h5py-gte-3.1.0-and-lt-3.16.0 branch December 29, 2025 16:17
ZackyLake added a commit to Kotomi-Du/openvino that referenced this pull request Dec 30, 2025
commit e1b34047b53bc1680e0e3f2939cfaf1d4ee24918
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 14:45:00 2025 +0000

    Update flake8-comprehensions requirement from <=3.16.0 to <=3.17.0 in /src/bindings/python (#32133)

    Updates the requirements on
    [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions)
    to permit the latest version.
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/adamchainz/flake8-comprehensions/blob/main/CHANGELOG.rst">flake8-comprehensions's
    changelog</a>.</em></p>
    <blockquote>
    <h2>3.17.0 (2025-09-09)</h2>
    <ul>
    <li>Support Python 3.14.</li>
    </ul>
    <h2>3.16.0 (2024-10-27)</h2>
    <ul>
    <li>
    <p>Drop Python 3.8 support.</p>
    </li>
    <li>
    <p>Support Python 3.13.</p>
    </li>
    </ul>
    <h2>3.15.0 (2024-06-29)</h2>
    <ul>
    <li>
    <p>Add rule C420 to check for dict comprehensions with constant values,
    encouraging replacement with <code>dict.fromkeys()</code>.</p>
    <p>Thanks to Tom Kuson in <code>PR
    [#553](https://github.com/adamchainz/flake8-comprehensions/issues/553)
    &lt;https://github.com/adamchainz/flake8-comprehensions/pull/553&gt;</code>__.</p>
    </li>
    </ul>
    <h2>3.14.0 (2023-07-10)</h2>
    <ul>
    <li>Drop Python 3.7 support.</li>
    </ul>
    <h2>3.13.0 (2023-06-15)</h2>
    <ul>
    <li>Support Python 3.12.</li>
    </ul>
    <h2>3.12.0 (2023-04-13)</h2>
    <ul>
    <li>
    <p>Add rule C418 to check for calls passing a dict literal or dict
    comprehension to <code>dict()</code>.</p>
    </li>
    <li>
    <p>Add rule C419 to check for calls passing a list comprehension to
    <code>any()</code>/<code>all()</code>.</p>
    </li>
    </ul>
    <h2>3.11.1 (2023-03-21)</h2>
    <ul>
    <li>
    <p>Fix false positives in C406 “unnecessary dict literal”.</p>
    <p>Fixes <code>Issue
    [#260](https://github.com/adamchainz/flake8-comprehensions/issues/260)
    &lt;https://github.com/adamchainz/flake8-comprehensions/issues/260&gt;</code>__.</p>
    </li>
    </ul>
    <h2>3.11.0 (2023-03-18)</h2>
    <ul>
    <li>
    <p>Expand C416 to <code>dict</code> comprehensions.</p>
    <p>Thanks to Aaron Gokaslan in <code>PR
    [#490](https://github.com/adamchainz/flake8-comprehensions/issues/490)
    &lt;https://github.com/adamchainz/flake8-comprehensions/pull/490&gt;</code>__.</p>
    </li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/adc19e260c3f719480fbde7c89c9095f83883eb1"><code>adc19e2</code></a>
    Version 3.17.0</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/f636a0fe53473da4b155993c7905fc551fa920b7"><code>f636a0f</code></a>
    Handle removal of deprecated ast Constant classes (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/630">#630</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/18d3dc2b4cf6a954c6336d51075c4909bb5e236c"><code>18d3dc2</code></a>
    Support Python 3.14 (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/629">#629</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/a372a8c70738a4f68fea1e5314bb4922a92cca83"><code>a372a8c</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/627">#627</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/71f7f083194eb7656b13b70ad0907b7a15b15a22"><code>71f7f08</code></a>
    Bump actions/checkout from 4 to 5 in the github-actions group (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/628">#628</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/2c9cd7d115170258a05264af6483a706351028ac"><code>2c9cd7d</code></a>
    Upgrade dependencies (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/626">#626</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/5fc74bb8505f3ff00c14054d7b3119632f3d9732"><code>5fc74bb</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/624">#624</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/c8c13cb806336f6e9b117804aaaaaca64c663389"><code>c8c13cb</code></a>
    Use uvx to run tox on GitHub Actions (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/625">#625</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/fbb575d0f833611975fe9a71d4100d2884dff6b6"><code>fbb575d</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/623">#623</a>)</li>
    <li><a
    href="https://github.com/adamchainz/flake8-comprehensions/commit/df3b7d0860b0e3f8d05c2f43c139d79101d031de"><code>df3b7d0</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/adamchainz/flake8-comprehensions/issues/620">#620</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/adamchainz/flake8-comprehensions/compare/1.0.0...3.17.0">compare
    view</a></li>
    </ul>
    </details>
    <br />

    You can trigger a rebase of this PR 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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    > **Note**
    > Automatic rebases have been disabled on this pull request as it has
    been open for over 30 days.

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Mikhail Ryzhov <[email protected]>
    Co-authored-by: Przemyslaw Wysocki <[email protected]>
    Co-authored-by: Alicja Miloszewska <[email protected]>

commit bd34f168445dae4a051279c33d657b7df11bca62
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 14:44:09 2025 +0000

    Update flake8-bugbear requirement from <=24.12.12 to <=25.11.29 in /src/bindings/python (#33361)

    Updates the requirements on
    [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) to permit the
    latest version.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/PyCQA/flake8-bugbear/releases">flake8-bugbear's
    releases</a>.</em></p>
    <blockquote>
    <h2>25.11.29</h2>
    <ul>
    <li>B043: Add new check to state don't call delattr with constant (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/514">#514</a>)</li>
    <li>B042: ignore overloaded init, ignore if str+pickle dunder, improve
    README</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/a5ace0a2fe0697c42bca1c37cebc3d95e2c10df9"><code>a5ace0a</code></a>
    Update CHANGES + move to version 25.11.29 to release</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/0afdcce2e33cf8fcbfe22d2d6f24e33b2f66eb1a"><code>0afdcce</code></a>
    b042: ignore overloaded init, ignore if str+pickle dunder, improve
    README (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/531">#531</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/2d2fd4d8abb1e3c5c831253ca8afd1717d4221e2"><code>2d2fd4d</code></a>
    Add B043: Do not call delattr with constant (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/514">#514</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/9677fa878cdb35f82e79a51b37d635256edd84df"><code>9677fa8</code></a>
    Bump actions/checkout from 5 to 6 (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/530">#530</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/ad43575c1a2cc58efca7148f5036ed3d9cd54cdc"><code>ad43575</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/529">#529</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/cdd75f1942294a152f864c978376f59b2ec08558"><code>cdd75f1</code></a>
    Update CHANGES + move to version 25.10.21 to release</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/4601fe6e1993d7a8309dd26105a55d8c77aeae0d"><code>4601fe6</code></a>
    Drop 3.9 support + add 3.14 CI (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/524">#524</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/39699611b4b399a6e81d726e76c58cbcdffa25ab"><code>3969961</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/523">#523</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/6276149b6807114307569d67be8516dae306beab"><code>6276149</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/522">#522</a>)</li>
    <li><a
    href="https://github.com/PyCQA/flake8-bugbear/commit/d264420dec52a034efe05f160c4ac157f053c6e8"><code>d264420</code></a>
    [pre-commit.ci] pre-commit autoupdate (<a
    href="https://redirect.github.com/PyCQA/flake8-bugbear/issues/520">#520</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/PyCQA/flake8-bugbear/compare/16.4.1...25.11.29">compare
    view</a></li>
    </ul>
    </details>
    <br />

    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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Przemyslaw Wysocki <[email protected]>

commit 24718662a1fe7070abce7edc92fd8da65016fd5a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 14:37:59 2025 +0000

    Update h5py requirement from <3.15.0,>=3.1.0 to >=3.1.0,<3.16.0 in /tests (#32395)

    Updates the requirements on [h5py](https://github.com/h5py/h5py) to
    permit the latest version.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/h5py/h5py/releases">h5py's
    releases</a>.</em></p>
    <blockquote>
    <h2>3.15.0</h2>
    <p>See <a
    href="https://docs.h5py.org/en/latest/whatsnew/3.15.html">https://docs.h5py.org/en/latest/whatsnew/3.15.html</a>
    for release notes</p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/h5py/h5py/commit/4e8866a3d1af352add72014149d0810ee5543c48"><code>4e8866a</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2719">#2719</a> from
    neutrinoceros/whl/bump-macosx-deployment-targets</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/c193adc1c1f72e1b7226773899f6d93d250fbbc2"><code>c193adc</code></a>
    WHL: match runner images macosx versions in
    MACOSX_DEPLOYMENT_TARGET</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/1b3c7c337e5af7fa8afac95897fc1b8e5cefb92f"><code>1b3c7c3</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2716">#2716</a> from
    takluyver/prepare-3.15</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/9a1dd425905e021acc8f91ad3461f15d7ae83881"><code>9a1dd42</code></a>
    Mention vlen conversion fix in release notes</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/fa6ffe9309b3b351bb2b32eed946408499c91a61"><code>fa6ffe9</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2718">#2718</a> from
    neutrinoceros/mnt/upgrade-cibuildwheel</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/b8bb1372bb50b09fe48def1f5afc8ef5985c895a"><code>b8bb137</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2717">#2717</a> from
    takluyver/vlen-empty-array</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/c51a46b5450ff1be9d6ccf53925407d4b00eb5a4"><code>c51a46b</code></a>
    Rearrange test code for clarity</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/e7c36e9882482683adcc5be92e6d58adbcf4374d"><code>e7c36e9</code></a>
    CLN: cleanup now-unnecessary cibuildwheel override</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/5be87258f13e746ca06b8393b4032edc9fa0a0f2"><code>5be8725</code></a>
    DEP: manually upgrade cibuildwheel action</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/f460bf48498969d516df3b0e5bdabf616cb3e72a"><code>f460bf4</code></a>
    Fix reading length 0 vlen entry with compound dtype of basic types</li>
    <li>Additional commits viewable in <a
    href="https://github.com/h5py/h5py/compare/3.1.0...3.15.0">compare
    view</a></li>
    </ul>
    </details>
    <br />

    You can trigger a rebase of this PR 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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    > **Note**
    > Automatic rebases have been disabled on this pull request as it has
    been open for over 30 days.

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Przemyslaw Wysocki <[email protected]>

commit b5e4e1b5942be84cd55fc79af17831ae0c27ba98
Author: Arseniy Obolenskiy <[email protected]>
Date:   Mon Dec 29 15:31:07 2025 +0100

    [CPU][RV64] Optimize register usage and instructions count in logical_or/xor/and op emitters (#32208)
     - N/A

    Co-authored-by: Vladislav Golubev <[email protected]>

commit 9bc4fc69664740ab536cb2ac024a43b7c4b428e7
Author: Arseniy Obolenskiy <[email protected]>
Date:   Mon Dec 29 15:22:57 2025 +0100

    [CPU] Use std::filesystem::path for paths management (#33342)
     - Switch to use `std::filesystem::path` instead of `std::string`
     - N/A

commit f712e4c1f6d5af9f2ffa13661189dae0b0d63afd
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 14:14:51 2025 +0000

    Bump kornia from 0.8.1 to 0.8.2 (#32756)

    Bumps [kornia](https://github.com/kornia/kornia) from 0.8.1 to 0.8.2.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/kornia/kornia/releases">kornia's
    releases</a>.</em></p>
    <blockquote>
    <h2>v0.8.2</h2>
    <h2>What's Changed</h2>
    <ul>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3109">kornia/kornia#3109</a></li>
    <li>Migrate to discord by <a
    href="https://github.com/cjpurackal"><code>@​cjpurackal</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3110">kornia/kornia#3110</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3112">kornia/kornia#3112</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3114">kornia/kornia#3114</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3118">kornia/kornia#3118</a></li>
    <li>remove: wrong logging debug setup by <a
    href="https://github.com/johnnv1"><code>@​johnnv1</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3120">kornia/kornia#3120</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3121">kornia/kornia#3121</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3124">kornia/kornia#3124</a></li>
    <li>docs: added docstring to the detach tensor to gpu by <a
    href="https://github.com/VARUN3WARE"><code>@​VARUN3WARE</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3131">kornia/kornia#3131</a></li>
    <li>docs: Updated documentation with SEO meta descriptions for modules
    by <a href="https://github.com/VARUN3WARE"><code>@​VARUN3WARE</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3129">kornia/kornia#3129</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3133">kornia/kornia#3133</a></li>
    <li>chore(deps-dev): bump pytest from 8.3.4 to 8.3.5 by <a
    href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3136">kornia/kornia#3136</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3138">kornia/kornia#3138</a></li>
    <li>Fix Sold2Detector link by <a
    href="https://github.com/ducha-aiki"><code>@​ducha-aiki</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3141">kornia/kornia#3141</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3144">kornia/kornia#3144</a></li>
    <li>Remove deprecation decorator from depth_to_3d function by <a
    href="https://github.com/Incharajayaram"><code>@​Incharajayaram</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3142">kornia/kornia#3142</a></li>
    <li>Utils: support resize on MPS by <a
    href="https://github.com/adamjstewart"><code>@​adamjstewart</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3145">kornia/kornia#3145</a></li>
    <li>Fix dedode when calling detect() with padding correctly handled by
    <a href="https://github.com/hit2sjtu"><code>@​hit2sjtu</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3147">kornia/kornia#3147</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3146">kornia/kornia#3146</a></li>
    <li>Splitting the tests in test_augmentation_3d.py and test_container.py
    into individual test files. by <a
    href="https://github.com/abdulrahman-riyad"><code>@​abdulrahman-riyad</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3143">kornia/kornia#3143</a></li>
    <li>Avoid 2N x 2N weight matrix allocation in find_homography_dlt by <a
    href="https://github.com/SimonLarsen"><code>@​SimonLarsen</code></a> in
    <a
    href="https://redirect.github.com/kornia/kornia/pull/3134">kornia/kornia#3134</a></li>
    <li>fix: fixes IndexError in draw_line method by <a
    href="https://github.com/cjpurackal"><code>@​cjpurackal</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3116">kornia/kornia#3116</a></li>
    <li>⚡️ Speed up function <code>point_line_distance</code> by 28% by <a
    href="https://github.com/dasarchan"><code>@​dasarchan</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3152">kornia/kornia#3152</a></li>
    <li>⚡️ Speed up function <code>val2list</code> by 229% by <a
    href="https://github.com/dasarchan"><code>@​dasarchan</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3151">kornia/kornia#3151</a></li>
    <li>fix kernel_size in dog_response by <a
    href="https://github.com/Force1ess"><code>@​Force1ess</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3137">kornia/kornia#3137</a></li>
    <li>⚡️ Speed up function <code>KORNIA_CHECK_IS_IMAGE</code> by 92% by <a
    href="https://github.com/misrasaurabh1"><code>@​misrasaurabh1</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3156">kornia/kornia#3156</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3158">kornia/kornia#3158</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3163">kornia/kornia#3163</a></li>
    <li>chore: skip dissolving tests by <a
    href="https://github.com/johnnv1"><code>@​johnnv1</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3164">kornia/kornia#3164</a></li>
    <li>Updated the Batch functionality for depth_to_3d_v2 function by <a
    href="https://github.com/Shubham-Sahoo"><code>@​Shubham-Sahoo</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3162">kornia/kornia#3162</a></li>
    <li>upgrade kornia-rs to 0.1.9 by <a
    href="https://github.com/edgarriba"><code>@​edgarriba</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3166">kornia/kornia#3166</a></li>
    <li>bump version 0.8.1 by <a
    href="https://github.com/edgarriba"><code>@​edgarriba</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3167">kornia/kornia#3167</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3165">kornia/kornia#3165</a></li>
    <li>potential fix to <a
    href="https://redirect.github.com/kornia/kornia/issues/3104">#3104</a>
    issue by <a
    href="https://github.com/soumya997"><code>@​soumya997</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3149">kornia/kornia#3149</a></li>
    <li>fix: Missed single pixel instance in upper left corner by
    <code>connected_components()</code> by <a
    href="https://github.com/Halyjo"><code>@​Halyjo</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3168">kornia/kornia#3168</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3170">kornia/kornia#3170</a></li>
    <li>Fix/issue3161 fix parenthesis in transform by <a
    href="https://github.com/stephen-mtz"><code>@​stephen-mtz</code></a> in
    <a
    href="https://redirect.github.com/kornia/kornia/pull/3171">kornia/kornia#3171</a></li>
    <li>Fix dedode forward with description padding removed. by <a
    href="https://github.com/hit2sjtu"><code>@​hit2sjtu</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3153">kornia/kornia#3153</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3172">kornia/kornia#3172</a></li>
    <li>Adding Otsu thresholding for automatic image segmentation by <a
    href="https://github.com/Neilstid"><code>@​Neilstid</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3181">kornia/kornia#3181</a></li>
    <li>fix onnx-sequential ir version by <a
    href="https://github.com/johnnv1"><code>@​johnnv1</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3187">kornia/kornia#3187</a></li>
    <li>drop support <code>torch&lt;2.0.0</code> by <a
    href="https://github.com/johnnv1"><code>@​johnnv1</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3186">kornia/kornia#3186</a></li>
    <li>fix ARKitQTVects_to_COLMAPQTVecs docstring by <a
    href="https://github.com/mjfang"><code>@​mjfang</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3188">kornia/kornia#3188</a></li>
    <li>[pre-commit.ci] pre-commit suggestions by <a
    href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a>[bot]
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3183">kornia/kornia#3183</a></li>
    <li>Feat/ codeflash/optimize-torch_version-utils by <a
    href="https://github.com/Meggison"><code>@​Meggison</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3196">kornia/kornia#3196</a></li>
    <li>[Fix] fixed typing by <a
    href="https://github.com/shijianjian"><code>@​shijianjian</code></a> in
    <a
    href="https://redirect.github.com/kornia/kornia/pull/3198">kornia/kornia#3198</a></li>
    <li>fixing awkward phrasing in CONTRIBUTING.md by <a
    href="https://github.com/Dhia-naouali"><code>@​Dhia-naouali</code></a>
    in <a
    href="https://redirect.github.com/kornia/kornia/pull/3199">kornia/kornia#3199</a></li>
    <li>Feat/codeflash-get_default_detector_config_new_batch by <a
    href="https://github.com/Meggison"><code>@​Meggison</code></a> in <a
    href="https://redirect.github.com/kornia/kornia/pull/3201">kornia/kornia#3201</a></li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/kornia/kornia/commit/856fd1ae6becd4300646db2b44ea3507e4ab0066"><code>856fd1a</code></a>
    release 0.8.2 (<a
    href="https://redirect.github.com/kornia/kornia/issues/3350">#3350</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/248f5c5da10948281c1d71539cc2aeb032d02bc0"><code>248f5c5</code></a>
    Revert &quot;optimized nms_bbox 4.83x (483.5% speedup) (<a
    href="https://redirect.github.com/kornia/kornia/issues/3251">#3251</a>)&quot;
    (<a
    href="https://redirect.github.com/kornia/kornia/issues/3349">#3349</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/df52ff018435d1263a7aea93ab6080f4da6e7cb2"><code>df52ff0</code></a>
    Update pointcloud_io.py (<a
    href="https://redirect.github.com/kornia/kornia/issues/3345">#3345</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/b54cdef451b7a91a6ff3a07fc4456b90da22f9f1"><code>b54cdef</code></a>
    [pre-commit.ci] pre-commit suggestions (<a
    href="https://redirect.github.com/kornia/kornia/issues/3326">#3326</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/119df629c485d57e1f8fb28bc9c82583bd50193d"><code>119df62</code></a>
    fix: add HF-hub dependency &amp; update uv.lock: pin
    huggingface-hub&lt;1.0 (<a
    href="https://redirect.github.com/kornia/kornia/issues/3338">#3338</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/78e219d0138b924ee5f70ef990856672274f4af6"><code>78e219d</code></a>
    fix: restrict transformers version to &lt;4.57 for compatibility (<a
    href="https://redirect.github.com/kornia/kornia/issues/3332">#3332</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/e7deb68d6c7aa3a2ac22a1879be5182c27431fdc"><code>e7deb68</code></a>
    fix: Relax tolerance for test_random_crops bbox assertions (<a
    href="https://redirect.github.com/kornia/kornia/issues/3336">#3336</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/a2f06a977223b5c1daff17a7b1da113f16576962"><code>a2f06a9</code></a>
    optimized denormalize (<a
    href="https://redirect.github.com/kornia/kornia/issues/3317">#3317</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/3964b946022b9cdb440e0fa1fcb03b31f93d1f27"><code>3964b94</code></a>
    fixed the rgba to rgb converter (<a
    href="https://redirect.github.com/kornia/kornia/issues/3323">#3323</a>)</li>
    <li><a
    href="https://github.com/kornia/kornia/commit/0ef19f68028648d7e536fbf4866cf5692cfae3d7"><code>0ef19f6</code></a>
    fix: correct same_on_frame and same_on_batch logic in VideoSequential
    (<a
    href="https://redirect.github.com/kornia/kornia/issues/3330">#3330</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/kornia/kornia/compare/v0.8.1...v0.8.2">compare
    view</a></li>
    </ul>
    </details>
    <br />

    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=kornia&package-manager=pip&previous-version=0.8.1&new-version=0.8.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

    You can trigger a rebase of this PR 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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    > **Note**
    > Automatic rebases have been disabled on this pull request as it has
    been open for over 30 days.

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Przemyslaw Wysocki <[email protected]>

commit d7971ba7c5df19706641c707d0d387c522c7457b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 14:54:45 2025 +0100

    Bump pytest from 8.4.1 to 8.4.2 in /tests (#32135)

    Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.4.1 to
    8.4.2.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/pytest-dev/pytest/releases">pytest's
    releases</a>.</em></p>
    <blockquote>
    <h2>8.4.2</h2>
    <h1>pytest 8.4.2 (2025-09-03)</h1>
    <h2>Bug fixes</h2>
    <ul>
    <li>
    <p><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13478">#13478</a>:
    Fixed a crash when using
    <code>console_output_style</code>{.interpreted-text
    role=&quot;confval&quot;} with <code>times</code> and a module is
    skipped.</p>
    </li>
    <li>
    <p><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13530">#13530</a>:
    Fixed a crash when using <code>pytest.approx</code>{.interpreted-text
    role=&quot;func&quot;} and
    <code>decimal.Decimal</code>{.interpreted-text role=&quot;class&quot;}
    instances with the <code>decimal.FloatOperation</code>{.interpreted-text
    role=&quot;class&quot;} trap set.</p>
    </li>
    <li>
    <p><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13549">#13549</a>:
    No longer evaluate type annotations in Python <code>3.14</code> when
    inspecting function signatures.</p>
    <p>This prevents crashes during module collection when modules do not
    explicitly use <code>from __future__ import annotations</code> and
    import types for annotations within a <code>if TYPE_CHECKING:</code>
    block.</p>
    </li>
    <li>
    <p><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13559">#13559</a>:
    Added missing [int]{.title-ref} and [float]{.title-ref} variants to the
    [Literal]{.title-ref} type annotation of the [type]{.title-ref}
    parameter in <code>pytest.Parser.addini</code>{.interpreted-text
    role=&quot;meth&quot;}.</p>
    </li>
    <li>
    <p><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13563">#13563</a>:
    <code>pytest.approx</code>{.interpreted-text role=&quot;func&quot;} now
    only imports <code>numpy</code> if NumPy is already in
    <code>sys.modules</code>. This fixes unconditional import behavior
    introduced in [8.4.0]{.title-ref}.</p>
    </li>
    </ul>
    <h2>Improved documentation</h2>
    <ul>
    <li><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13577">#13577</a>:
    Clarify that <code>pytest_generate_tests</code> is discovered in test
    modules/classes; other hooks must be in <code>conftest.py</code> or
    plugins.</li>
    </ul>
    <h2>Contributor-facing changes</h2>
    <ul>
    <li><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13480">#13480</a>:
    Self-testing: fixed a few test failures when run with
    <code>-Wdefault</code> or a similar override.</li>
    <li><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13547">#13547</a>:
    Self-testing: corrected expected message for
    <code>test_doctest_unexpected_exception</code> in Python
    <code>3.14</code>.</li>
    <li><a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13684">#13684</a>:
    Make pytest's own testsuite insensitive to the presence of the
    <code>CI</code> environment variable -- by
    <code>ogrisel</code>{.interpreted-text role=&quot;user&quot;}.</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/bfae4224fd554d3d7f2c277a4cc092b6ec6af3ae"><code>bfae422</code></a>
    Prepare release version 8.4.2</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/89905381a163be30ae87d62e5f750e902d750c5f"><code>8990538</code></a>
    Fix passenv CI in tox ini and make tests insensitive to the presence of
    the C...</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/ca676bfe005aebcb12f4146d1b0f1d2772e2cd5d"><code>ca676bf</code></a>
    Merge pull request <a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13687">#13687</a>
    from pytest-dev/patchback/backports/8.4.x/e63f6e51c...</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/975a60a63ce385a44655596e254c1899feaa53e4"><code>975a60a</code></a>
    Merge pull request <a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13686">#13686</a>
    from pytest-dev/patchback/backports/8.4.x/12bde8af6...</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/7723ce84b87ab08f86ddafcb342acc28ba5ec99d"><code>7723ce8</code></a>
    Merge pull request <a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13683">#13683</a>
    from even-even/fix_Exeption_to_Exception_in_errorMe...</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/b7f05680d1301e0969b30bcb3c4b27433c9ee2b7"><code>b7f0568</code></a>
    Merge pull request <a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13685">#13685</a>
    from CoretexShadow/fix/docs-pytest-generate-tests</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/2c94c4a6948ba53440818389298157fa5d5f94cd"><code>2c94c4a</code></a>
    add missing colon (<a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13640">#13640</a>)
    (<a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13641">#13641</a>)</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/c3d7684bc01c8c48d05145a30c5211ca8656c68c"><code>c3d7684</code></a>
    Merge pull request <a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13606">#13606</a>
    from pytest-dev/patchback/backports/8.4.x/5f9938563...</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/dc6e3be2ddc75a149b6d102d9b7c82ee47a00cfa"><code>dc6e3be</code></a>
    Merge pull request <a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13605">#13605</a>
    from The-Compiler/training-update-2025-07</li>
    <li><a
    href="https://github.com/pytest-dev/pytest/commit/f87289c36c8dbe7740e3020f5546b6f8b0861ff0"><code>f87289c</code></a>
    Fix crash with <code>times</code> output style and skipped module (<a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13573">#13573</a>)
    (<a
    href="https://redirect.github.com/pytest-dev/pytest/issues/13579">#13579</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/pytest-dev/pytest/compare/8.4.1...8.4.2">compare
    view</a></li>
    </ul>
    </details>
    <br />

    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest&package-manager=pip&previous-version=8.4.1&new-version=8.4.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

    You can trigger a rebase of this PR 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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    > **Note**
    > Automatic rebases have been disabled on this pull request as it has
    been open for over 30 days.

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Mikhail Ryzhov <[email protected]>
    Co-authored-by: Przemyslaw Wysocki <[email protected]>
    Co-authored-by: Alicja Miloszewska <[email protected]>

commit 5cf740bb8cdbc26a24ddd1e21994c46b93a9c405
Author: Arseniy Obolenskiy <[email protected]>
Date:   Mon Dec 29 14:30:29 2025 +0100

    [Snippets][CPU] Enable RegPrinter debug capability on RISC-V, add long jumps support in loop emitters on RISC-V (#33338)
    - Enable RegPrinter debug capability on RISC-V (implement corresponding
    RegPrinter class)
    - Adjust RISC-V loop emitters to support long jumps (necessary if loop
    body is big and offset cannot fit to 12-bit immediate value), required
    for RegPrinter usage
     - N/A

commit f33ccc4e0f4662f8528b7de878990cb768ca0833
Author: Mang Guo <[email protected]>
Date:   Mon Dec 29 21:20:16 2025 +0800

    Refactor pagedAttention transpose (#33102)
    - *Move transpose functions from executor_pa.cpp to transpose.hpp to
    reuse in xattention and executor_pa.cpp. Modify transpose_16NxK logic to
    handle tails*
     - *[CVS-177312](https://jira.devtools.intel.com/browse/CVS-177312)*

commit 6d1896ad79fc70278f7bf0b891258904f6a028b5
Author: Egor Duplenskii <[email protected]>
Date:   Mon Dec 29 14:15:23 2025 +0100

    [CPU] Simplify matmul weights transposition logic (#33003)

commit 62ba741ee8c28e28204596089886bd547a070fbc
Author: Razvan Apetroaie <[email protected]>
Date:   Mon Dec 29 12:04:35 2025 +0200

    [NPU] UMD caching: pass the model hash to the driver (#33046)
    - The NPU plugin sends its own model hash to the driver if the driver
    supports this feature. This hash is computed using the pass provided by
    OV. The driver will use this hash as part of the computation for the
    final hash. The final hash determines a UMD cache hit/miss.
    - Reorganized the pipeline that runs for serializing the model to assure
    correctness. First, all operator conversion passes are run. Then runtime
    information (such as the `WeightlessCacheAttribute`) is stored. Finally,
    the model is serialized and the hash is computed if the feature is
    supported.
     - *EISW-178935*

commit 6dd114cae1957b3dc0c1ed3b5f79628c332eda0f
Author: Mang Guo <[email protected]>
Date:   Mon Dec 29 17:30:30 2025 +0800

    [CPU] Xattention: reallocate buffer when prompt length changes (#33200)

    Support variable length prompts in xattention.
     - *Reallocate buffer when prompt length changes.*
    - *Disable tests excepts the AMX platform since there is sporadic
    failure on Windows.*

commit 5620e3e190cd1815cf8cbc0b7ef3bbcf90724f8a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 09:04:12 2025 +0000

    Bump urllib3 from 2.6.0 to 2.6.2 (#33363)

    Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.6.0 to 2.6.2.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/urllib3/urllib3/releases">urllib3's
    releases</a>.</em></p>
    <blockquote>
    <h2>2.6.2</h2>
    <h2>🚀 urllib3 is fundraising for HTTP/2 support</h2>
    <p><a
    href="https://sethmlarson.dev/urllib3-is-fundraising-for-http2-support">urllib3
    is raising ~$40,000 USD</a> to release HTTP/2 support and ensure
    long-term sustainable maintenance of the project after a sharp decline
    in financial support. If your company or organization uses Python and
    would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and
    thousands of other projects <a
    href="https://opencollective.com/urllib3">please consider contributing
    financially</a> to ensure HTTP/2 support is developed sustainably and
    maintained for the long-haul.</p>
    <p>Thank you for your support.</p>
    <h2>Changes</h2>
    <ul>
    <li>Fixed <code>HTTPResponse.read_chunked()</code> to properly handle
    leftover data in the decoder's buffer when reading compressed chunked
    responses. (<a
    href="https://redirect.github.com/urllib3/urllib3/issues/3734">urllib3/urllib3#3734</a>)</li>
    </ul>
    <h2>2.6.1</h2>
    <h2>🚀 urllib3 is fundraising for HTTP/2 support</h2>
    <p><a
    href="https://sethmlarson.dev/urllib3-is-fundraising-for-http2-support">urllib3
    is raising ~$40,000 USD</a> to release HTTP/2 support and ensure
    long-term sustainable maintenance of the project after a sharp decline
    in financial support. If your company or organization uses Python and
    would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and
    thousands of other projects <a
    href="https://opencollective.com/urllib3">please consider contributing
    financially</a> to ensure HTTP/2 support is developed sustainably and
    maintained for the long-haul.</p>
    <p>Thank you for your support.</p>
    <h2>Changes</h2>
    <ul>
    <li>Restore previously removed <code>HTTPResponse.getheaders()</code>
    and <code>HTTPResponse.getheader()</code> methods. (<a
    href="https://redirect.github.com/urllib3/urllib3/issues/3731">#3731</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/urllib3/urllib3/blob/main/CHANGES.rst">urllib3's
    changelog</a>.</em></p>
    <blockquote>
    <h1>2.6.2 (2025-12-11)</h1>
    <ul>
    <li>Fixed <code>HTTPResponse.read_chunked()</code> to properly handle
    leftover data in
    the decoder's buffer when reading compressed chunked responses.
    (<code>[#3734](https://github.com/urllib3/urllib3/issues/3734)
    &lt;https://github.com/urllib3/urllib3/issues/3734&gt;</code>__)</li>
    </ul>
    <h1>2.6.1 (2025-12-08)</h1>
    <ul>
    <li>Restore previously removed <code>HTTPResponse.getheaders()</code>
    and
    <code>HTTPResponse.getheader()</code> methods.
    (<code>[#3731](https://github.com/urllib3/urllib3/issues/3731)
    &lt;https://github.com/urllib3/urllib3/issues/3731&gt;</code>__)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/urllib3/urllib3/commit/83f8643ffb5b7f197457379148e2fa118ab0fcdc"><code>83f8643</code></a>
    Release 2.6.2</li>
    <li><a
    href="https://github.com/urllib3/urllib3/commit/571a9b7b894cee5733c7c2cf72fa260cf1f4b660"><code>571a9b7</code></a>
    Fix <code>HTTPResponse.read_chunked</code> when leftover data is present
    in decoder's bu...</li>
    <li><a
    href="https://github.com/urllib3/urllib3/commit/bfe8e198a13800e3ee8ef8124a8928acb170c843"><code>bfe8e19</code></a>
    Release 2.6.1</li>
    <li><a
    href="https://github.com/urllib3/urllib3/commit/3ceeb84107946de22e9753fc1e6c075ab36d2c4c"><code>3ceeb84</code></a>
    Restore <code>getheaders()</code> and <code>getheader()</code> (<a
    href="https://redirect.github.com/urllib3/urllib3/issues/3732">#3732</a>)</li>
    <li>See full diff in <a
    href="https://github.com/urllib3/urllib3/compare/2.6.0...2.6.2">compare
    view</a></li>
    </ul>
    </details>
    <br />

    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=urllib3&package-manager=pip&previous-version=2.6.0&new-version=2.6.2)](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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 36e831d1a6d47a1d42ac28f28241e92c849c362b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 29 09:49:12 2025 +0100

    Update flake8-pytest-style requirement from <=2.1.0 to <=2.2.0 in /src/bindings/python (#32495)

    Updates the requirements on
    [flake8-pytest-style](https://github.com/m-burst/flake8-pytest-style) to
    permit the latest version.
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/3c0d72ad523966587bd925c5f74f02a91af46719"><code>3c0d72a</code></a>
    Bump version: 2.1.0 → 2.2.0</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/c48289b0830278d50b829ec70b1d8a72a89f2fc8"><code>c48289b</code></a>
    Fix quotes in bumpversion config</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/fbb9b6dcaf2306d6f063156b31bf029f85b1cfab"><code>fbb9b6d</code></a>
    Update versions of CI actions (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/365">#365</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/a274a0c3a2e884024a8ea251edfaeef8456537d2"><code>a274a0c</code></a>
    Support Python 3.14 (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/363">#363</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/a122ec334bfdaa83502e45d280cb3a002e39e4aa"><code>a122ec3</code></a>
    Switch single quotes to double, drop unify dependency (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/364">#364</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/c30610b014d6579c3f0eb1b12ae9bd4724d6ef7d"><code>c30610b</code></a>
    Update deps (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/362">#362</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/0da31622bf00b2858c235bc1b925f713042adc76"><code>0da3162</code></a>
    Bump pylint from 3.3.8 to 3.3.9 (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/360">#360</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/ef7fee25956f9dd0861b9dbc841e5bfdb4d1e747"><code>ef7fee2</code></a>
    Bump pytest-mock from 3.14.1 to 3.15.1 (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/357">#357</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/0794dcf66f7d9c70deefa9faf244212a64ce14dd"><code>0794dcf</code></a>
    Bump black from 25.1.0 to 25.9.0 (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/358">#358</a>)</li>
    <li><a
    href="https://github.com/m-burst/flake8-pytest-style/commit/30397859ad8ca6b2e7d374aa799858b175e4c955"><code>3039785</code></a>
    Bump pytest-cov from 6.2.1 to 7.0.0 (<a
    href="https://redirect.github.com/m-burst/flake8-pytest-style/issues/355">#355</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/m-burst/flake8-pytest-style/compare/v0.1.0...v2.2.0">compare
    view</a></li>
    </ul>
    </details>
    <br />

    You can trigger a rebase of this PR 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 show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@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>

    > **Note**
    > Automatic rebases have been disabled on this pull request as it has
    been open for over 30 days.

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Przemyslaw Wysocki <[email protected]>

commit e4b65a0ab6c946c72d56240223620837e6d34bf8
Author: Maxim Kurin <[email protected]>
Date:   Thu Dec 25 15:30:55 2025 +0000

    [NPU] Flash Attention Tile internal operation (#33303)
    - Implement internal FlashAttentionTile operation in a separate static
    library.
     - Support f32 evaluate function to compute reference on CPU.

    E#192494

    ---------

    Co-authored-by: Artemy Skrebkov <[email protected]>

commit 84c03d65afbfde4cbddc5f9b4117285013888c65
Author: Wanglei Shen <[email protected]>
Date:   Thu Dec 25 08:12:40 2025 +0000

    Update LLM identification method in threading  (#33006)
     - *Update LLM identification method in threading *
     - *CVS-177082*

    ---------

    Co-authored-by: sunxiaoxia2022 <[email protected]>

commit 9458c10483e89020abe35326625a69edc93e27b4
Author: intelgaoxiong <[email protected]>
Date:   Wed Dec 24 08:55:12 2025 -0800

    [NPUW]Extend Host Gather to support GPT-OSS. (#33355)
    Extend Host Gather to support below pattern in GPT-OSS
    <img width="314" height="352" alt="image"
    src="https://github.com/user-attachments/assets/78a293dc-d300-48d6-b420-ab76954102a0"
    />
     - *[EISW-197698](https://jira.devtools.intel.com/browse/EISW-197698)*

    Signed-off-by: intelgaoxiong <[email protected]>

commit 320234e389b9cb2ac1729deb6c7fda53fbeea687
Author: intelgaoxiong <[email protected]>
Date:   Wed Dec 24 05:41:15 2025 -0800

    [NPUW]HFA log clean up. (#33353)
    Remove redundant HFA log.
     - *[EISW-194855](https://jira.devtools.intel.com/browse/EISW-194855)*

    Signed-off-by: intelgaoxiong <[email protected]>

commit 32901c95ffe270b936de4074aba8743c5e253b82
Author: Denis Orlov <[email protected]>
Date:   Wed Dec 24 10:02:49 2025 +0000

    [doc] Fix the date in ops documentation (#33320)

    Fix the date in the operations documentation
     - 176808

commit d7e36d024a591a340adff530f93d23962b9f0ec6
Author: Arseniy Obolenskiy <[email protected]>
Date:   Tue Dec 23 16:58:45 2025 +0100

    [CPU][TESTS] Move bitwise operation tests to common, enable them on RISC-V arch (#33289)
     - N/A

commit 917272507ff19b7a36e6f185cb62b4fb2e0930d3
Author: Arseniy Obolenskiy <[email protected]>
Date:   Tue Dec 23 16:23:39 2025 +0100

    [Snippets][CPU] Enable transpose support on ARM64 (#33347)
     - 178777

commit 044c19a643d6ccded544b440fe69d1abf73f910e
Author: Arseniy Obolenskiy <[email protected]>
Date:   Tue Dec 23 14:07:48 2025 +0100

    [CPU] Restore ACL cmake build (#33186)
    Revive ARM Compute Library cmake build which is broken right now and
    enable testing it on Linux ARM64 on CI
     - N/A

commit 737c3046404f68e7cf7b6d394e498516393acbc1
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 23 13:42:52 2025 +0100

    Update h5py requirement from <3.15.0,>=3.1.0 to >=3.1.0,<3.16.0 in /src/bindings/python (#32394)

    Updates the requirements on [h5py](https://github.com/h5py/h5py) to
    permit the latest version.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/h5py/h5py/releases">h5py's
    releases</a>.</em></p>
    <blockquote>
    <h2>3.15.0</h2>
    <p>See <a
    href="https://docs.h5py.org/en/latest/whatsnew/3.15.html">https://docs.h5py.org/en/latest/whatsnew/3.15.html</a>
    for release notes</p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/h5py/h5py/commit/4e8866a3d1af352add72014149d0810ee5543c48"><code>4e8866a</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2719">#2719</a> from
    neutrinoceros/whl/bump-macosx-deployment-targets</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/c193adc1c1f72e1b7226773899f6d93d250fbbc2"><code>c193adc</code></a>
    WHL: match runner images macosx versions in
    MACOSX_DEPLOYMENT_TARGET</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/1b3c7c337e5af7fa8afac95897fc1b8e5cefb92f"><code>1b3c7c3</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2716">#2716</a> from
    takluyver/prepare-3.15</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/9a1dd425905e021acc8f91ad3461f15d7ae83881"><code>9a1dd42</code></a>
    Mention vlen conversion fix in release notes</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/fa6ffe9309b3b351bb2b32eed946408499c91a61"><code>fa6ffe9</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2718">#2718</a> from
    neutrinoceros/mnt/upgrade-cibuildwheel</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/b8bb1372bb50b09fe48def1f5afc8ef5985c895a"><code>b8bb137</code></a>
    Merge pull request <a
    href="https://redirect.github.com/h5py/h5py/issues/2717">#2717</a> from
    takluyver/vlen-empty-array</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/c51a46b5450ff1be9d6ccf53925407d4b00eb5a4"><code>c51a46b</code></a>
    Rearrange test code for clarity</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/e7c36e9882482683adcc5be92e6d58adbcf4374d"><code>e7c36e9</code></a>
    CLN: cleanup now-unnecessary cibuildwheel override</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/5be87258f13e746ca06b8393b4032edc9fa0a0f2"><code>5be8725</code></a>
    DEP: manually upgrade cibuildwheel action</li>
    <li><a
    href="https://github.com/h5py/h5py/commit/f460bf48498969d516df3b0e5bdabf616cb3e72a"><code>f460bf4</code></a>
    Fix reading length 0 vlen entry with compound dtype of basic types</li>
    <li>Additional commits viewable in <a
    href="htt…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

category: dependency_changes Pull requests that update a dependency file dependencies Pull requests that update a dependency file ExternalPR External contributor python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants