[PR #19067] fix(deps): update machine-learning (major) #15953

Closed
opened 2026-02-05 15:57:13 +03:00 by OVERLORD · 0 comments
Owner

Original Pull Request: https://github.com/immich-app/immich/pull/19067

State: closed
Merged: Yes


This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pytest-asyncio (changelog) 0.26.0 -> 1.0.0 age adoption passing confidence
rich 13.9.4 -> 14.0.0 age adoption passing confidence
types-setuptools (changelog) 76.0.0.20250313 -> 80.9.0.20250529 age adoption passing confidence

Release Notes

pytest-dev/pytest-asyncio (pytest-asyncio)

v1.0.0: pytest-asyncio 1.0.0

Compare Source

1.0.0 - 2025-05-26

Removed

  • The deprecated event_loop fixture.
    (#​1106)

Added

  • Prelimiary support for Python 3.14
    (#​1025)

Changed

  • Scoped event loops (e.g. module-scoped loops) are created once rather
    than per scope (e.g. per module). This reduces the number of fixtures
    and speeds up collection time, especially for large test suites.
    (#​1107)
  • The loop_scope argument to pytest.mark.asyncio no longer forces
    that a pytest Collector exists at the level of the specified scope.
    For example, a test function marked with
    pytest.mark.asyncio(loop_scope="class") no longer requires a class
    surrounding the test. This is consistent with the behavior of the
    scope argument to pytest_asyncio.fixture.
    (#​1112)

Fixed

  • An error caused when using pytest's [--setup-plan]{.title-ref}
    option.
    (#​630)
  • Unsuppressed import errors with pytest option
    --doctest-ignore-import-errors
    (#​797)
  • A "fixture not found" error in connection with package-scoped loops
    (#​1052)

Notes for Downstream Packagers

  • Removed a test that had an ordering dependency on other tests.
    (#​1114)
Textualize/rich (rich)

v14.0.0

Compare Source

Added
Changed

Configuration

📅 Schedule: Branch creation - "before 9am on tuesday" (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 these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

**Original Pull Request:** https://github.com/immich-app/immich/pull/19067 **State:** closed **Merged:** Yes --- This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pytest-asyncio](https://redirect.github.com/pytest-dev/pytest-asyncio) ([changelog](https://pytest-asyncio.readthedocs.io/en/latest/reference/changelog.html)) | `0.26.0` -> `1.0.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest-asyncio/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/pytest-asyncio/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/pytest-asyncio/0.26.0/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest-asyncio/0.26.0/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [rich](https://redirect.github.com/Textualize/rich) | `13.9.4` -> `14.0.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/rich/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/rich/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/rich/13.9.4/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/rich/13.9.4/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [types-setuptools](https://redirect.github.com/python/typeshed) ([changelog](https://redirect.github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/setuptools.md)) | `76.0.0.20250313` -> `80.9.0.20250529` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/types-setuptools/80.9.0.20250529?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/types-setuptools/80.9.0.20250529?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/types-setuptools/76.0.0.20250313/80.9.0.20250529?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/types-setuptools/76.0.0.20250313/80.9.0.20250529?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>pytest-dev/pytest-asyncio (pytest-asyncio)</summary> ### [`v1.0.0`](https://redirect.github.com/pytest-dev/pytest-asyncio/releases/tag/v1.0.0): pytest-asyncio 1.0.0 [Compare Source](https://redirect.github.com/pytest-dev/pytest-asyncio/compare/v0.26.0...v1.0.0) ### [1.0.0](https://redirect.github.com/pytest-dev/pytest-asyncio/tree/1.0.0) - 2025-05-26 #### Removed - The deprecated *event_loop* fixture. ([#&#8203;1106](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1106)) #### Added - Prelimiary support for Python 3.14 ([#&#8203;1025](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1025)) #### Changed - Scoped event loops (e.g. module-scoped loops) are created once rather than per scope (e.g. per module). This reduces the number of fixtures and speeds up collection time, especially for large test suites. ([#&#8203;1107](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1107)) - The *loop_scope* argument to `pytest.mark.asyncio` no longer forces that a pytest Collector exists at the level of the specified scope. For example, a test function marked with `pytest.mark.asyncio(loop_scope="class")` no longer requires a class surrounding the test. This is consistent with the behavior of the *scope* argument to `pytest_asyncio.fixture`. ([#&#8203;1112](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1112)) #### Fixed - An error caused when using pytest's \[--setup-plan]{.title-ref} option. ([#&#8203;630](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/630)) - Unsuppressed import errors with pytest option `--doctest-ignore-import-errors` ([#&#8203;797](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/797)) - A "fixture not found" error in connection with package-scoped loops ([#&#8203;1052](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1052)) #### Notes for Downstream Packagers - Removed a test that had an ordering dependency on other tests. ([#&#8203;1114](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1114)) </details> <details> <summary>Textualize/rich (rich)</summary> ### [`v14.0.0`](https://redirect.github.com/Textualize/rich/blob/HEAD/CHANGELOG.md#1400---2025-03-30) [Compare Source](https://redirect.github.com/Textualize/rich/compare/v13.9.4...v14.0.0) ##### Added - Added env var `TTY_COMPATIBLE` to override auto-detection of TTY support (See console.rst for details). [https://github.com/Textualize/rich/pull/3675](https://redirect.github.com/Textualize/rich/pull/3675) ##### Changed - An empty `NO_COLOR` env var is now considered disabled. [https://github.com/Textualize/rich/pull/3675](https://redirect.github.com/Textualize/rich/pull/3675) - An empty `FORCE_COLOR` env var is now considered disabled. [https://github.com/Textualize/rich/pull/3675](https://redirect.github.com/Textualize/rich/pull/3675) - Rich tracebacks will now render notes on Python 3.11 onwards (added with `Exception.add_note`) [https://github.com/Textualize/rich/pull/3676](https://redirect.github.com/Textualize/rich/pull/3676) - Indentation in exceptions won't be underlined [https://github.com/Textualize/rich/pull/3678](https://redirect.github.com/Textualize/rich/pull/3678) - Rich tracebacks will now render Exception Groups [https://github.com/Textualize/rich/pull/3677](https://redirect.github.com/Textualize/rich/pull/3677) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 9am on tuesday" (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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/immich-app/immich). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40OC41IiwidXBkYXRlZEluVmVyIjoiNDAuNDguNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlbG9nOnNraXAiLCJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSJdfQ==-->
OVERLORD added the pull-request label 2026-02-05 15:57:13 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#15953