[PR #260] [MERGED] Bump pytest-asyncio from 0.23.8 to 0.24.0 #435

Closed
opened 2026-02-15 16:30:24 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama-python/pull/260
Author: @dependabot[bot]
Created: 8/22/2024
Status: Merged
Merged: 8/27/2024
Merged by: @dependabot[bot]

Base: mainHead: dependabot/pip/pytest-asyncio-0.24.0


📝 Commits (1)

  • 9e6726e Bump pytest-asyncio from 0.23.8 to 0.24.0

📊 Changes

2 files changed (+6 additions, -6 deletions)

View changed files

📝 poetry.lock (+5 -5)
📝 pyproject.toml (+1 -1)

📄 Description

Bumps pytest-asyncio from 0.23.8 to 0.24.0.

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio 0.24.0

0.24.0 (2024-08-22)

  • BREAKING: Updated minimum supported pytest version to v8.2.0
  • Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
  • Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with pytest_asyncio.fixture. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.
  • Raises an error when passing scope or loop_scope as a positional argument to @pytest.mark.asyncio. #812
  • Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules #862 #668

pytest-asyncio 0.24.0a1

0.24.0 (UNRELEASED)

  • BREAKING: Updated minimum supported pytest version to v8.2.0
  • Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
  • Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with pytest_asyncio.fixture. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.
  • Raises an error when passing scope or loop_scope as a positional argument to @pytest.mark.asyncio. #812
  • Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules #862 #668

pytest-asyncio 0.24.0a0

0.24.0 (UNRELEASED)

  • Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
  • Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with pytest_asyncio.fixture. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.
  • Raises an error when passing scope or loop_scope as a positional argument to @pytest.mark.asyncio. #812
Commits
  • fb5422f docs: Set release date for v0.24 in changelog.
  • 6dc7f58 docs: Add migration guides for pytest-asyncio v0.21 and v0.23.
  • 1bfc181 Wire Sphinx builds into the RTD config via tox
  • f03cf13 Build(deps): Bump hypothesis in /dependencies/default
  • 69540bf Build(deps): Bump attrs from 24.1.0 to 24.2.0 in /dependencies/default
  • b0ccfc5 Build(deps): Bump hypothesis in /dependencies/default
  • 574f1db Build(deps): Bump babel from 2.15.0 to 2.16.0 in /dependencies/docs
  • ae30dac Update .readthedocs.yaml to install pytest-asyncio
  • 972a704 Derive project version using importlib
  • d587a52 [pre-commit.ci] pre-commit autoupdate
  • 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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama-python/pull/260 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/22/2024 **Status:** ✅ Merged **Merged:** 8/27/2024 **Merged by:** [@dependabot[bot]](https://github.com/apps/dependabot) **Base:** `main` ← **Head:** `dependabot/pip/pytest-asyncio-0.24.0` --- ### 📝 Commits (1) - [`9e6726e`](https://github.com/ollama/ollama-python/commit/9e6726e28a14b7d4cd81114c6e48033dc13f9df6) Bump pytest-asyncio from 0.23.8 to 0.24.0 ### 📊 Changes **2 files changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `poetry.lock` (+5 -5) 📝 `pyproject.toml` (+1 -1) </details> ### 📄 Description Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.23.8 to 0.24.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's releases</a>.</em></p> <blockquote> <h2>pytest-asyncio 0.24.0</h2> <h1>0.24.0 (2024-08-22)</h1> <ul> <li>BREAKING: Updated minimum supported pytest version to v8.2.0</li> <li>Adds an optional <em>loop_scope</em> keyword argument to <em>pytest.mark.asyncio</em>. This argument controls which event loop is used to run the marked async test. <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/706">#706</a>, <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/871">#871</a></li> <li>Deprecates the optional <em>scope</em> keyword argument to <em>pytest.mark.asyncio</em> for API consistency with <code>pytest_asyncio.fixture</code>. Users are encouraged to use the <em>loop_scope</em> keyword argument, which does exactly the same.</li> <li>Raises an error when passing <em>scope</em> or <em>loop_scope</em> as a positional argument to <code>@pytest.mark.asyncio</code>. <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/812">#812</a></li> <li>Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/862">#862</a> <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/668">#668</a></li> </ul> <h2>pytest-asyncio 0.24.0a1</h2> <h1>0.24.0 (UNRELEASED)</h1> <ul> <li>BREAKING: Updated minimum supported pytest version to v8.2.0</li> <li>Adds an optional <em>loop_scope</em> keyword argument to <em>pytest.mark.asyncio</em>. This argument controls which event loop is used to run the marked async test. <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/706">#706</a>, <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/871">#871</a></li> <li>Deprecates the optional <em>scope</em> keyword argument to <em>pytest.mark.asyncio</em> for API consistency with <code>pytest_asyncio.fixture</code>. Users are encouraged to use the <em>loop_scope</em> keyword argument, which does exactly the same.</li> <li>Raises an error when passing <em>scope</em> or <em>loop_scope</em> as a positional argument to <code>@pytest.mark.asyncio</code>. <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/812">#812</a></li> <li>Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/862">#862</a> <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/668">#668</a></li> </ul> <h2>pytest-asyncio 0.24.0a0</h2> <h1>0.24.0 (UNRELEASED)</h1> <ul> <li>Adds an optional <em>loop_scope</em> keyword argument to <em>pytest.mark.asyncio</em>. This argument controls which event loop is used to run the marked async test. <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/706">#706</a>, <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/871">#871</a></li> <li>Deprecates the optional <em>scope</em> keyword argument to <em>pytest.mark.asyncio</em> for API consistency with <code>pytest_asyncio.fixture</code>. Users are encouraged to use the <em>loop_scope</em> keyword argument, which does exactly the same.</li> <li>Raises an error when passing <em>scope</em> or <em>loop_scope</em> as a positional argument to <code>@pytest.mark.asyncio</code>. <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/812">#812</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/fb5422f94d4a85b8f2a0ea2731f5ebeae5fcd7e8"><code>fb5422f</code></a> docs: Set release date for v0.24 in changelog.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/6dc7f584e71476c09393cca65c813c624ecc5882"><code>6dc7f58</code></a> docs: Add migration guides for pytest-asyncio v0.21 and v0.23.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/1bfc18164693026d897ebb48ed6e72d85d87fa44"><code>1bfc181</code></a> Wire Sphinx builds into the RTD config via tox</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/f03cf13b05f08b8a27f9f33ae578d1caec896d72"><code>f03cf13</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/69540bfae3865ebb0395a549cf469fb07c04c08a"><code>69540bf</code></a> Build(deps): Bump attrs from 24.1.0 to 24.2.0 in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/b0ccfc5c5c196bec373fab247565e0158ff39582"><code>b0ccfc5</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/574f1db6869146163cd21b65545494cf517712e2"><code>574f1db</code></a> Build(deps): Bump babel from 2.15.0 to 2.16.0 in /dependencies/docs</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/ae30dac2f7b9af62f3ef7ef614a5c99284a94271"><code>ae30dac</code></a> Update .readthedocs.yaml to install pytest-asyncio</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/972a7045adcaff98a151ec632a9205497afe373d"><code>972a704</code></a> Derive project version using importlib</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/d587a521a4aab33275c1352f7832e5e21c4bab93"><code>d587a52</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.23.8...v0.24.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest-asyncio&package-manager=pip&previous-version=0.23.8&new-version=0.24.0)](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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:30:24 -05:00
yindo closed this issue 2026-02-15 16:30:24 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: ollama/ollama-python#435