chore(deps-dev): bump pytest-asyncio from 0.23.8 to 1.1.0 #1288
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps pytest-asyncio from 0.23.8 to 1.1.0.
Release notes
Sourced from pytest-asyncio's releases.
... (truncated)
Commits
ce06c07chore: Prepare release of v1.1.0.d9a8dccci: Workaround missing Tag annotation during release.d66e12f[pre-commit.ci] pre-commit autoupdate9e5e25fBuild(deps): Bump certifi in /dependencies/docs0e63423Build(deps): Bump hypothesis in /dependencies/defaultbd4551cBuild(deps): Bump ncipollo/release-action from 1.16.0 to 1.18.08e20305Build(deps): Bump hypothesis in /dependencies/defaultb7a8ab5Build(deps): Bump coverage from 7.9.1 to 7.9.2 in /dependencies/default8cc378dBuild(deps): Bump typing-extensions in /dependencies/defaultfb6bfbf[pre-commit.ci] pre-commit autoupdateYou 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Important
Bump
pytest-asyncioto 1.1.0 inpyproject.toml, adding new features and fixes.pytest-asynciofrom>=0.21.1,<0.24.0to>=0.21.1,<1.2.0inpyproject.toml.ContextVarsfrom async fixtures to other fixtures and tests on Python 3.10 and older.loop_scopeends.finallyclause of a task.backports.asyncio.runnerfor Python 3.10 and older.This description was created by
for b633a69. You can customize this summary. It will automatically update as commits are pushed.
Disclaimer: Experimental PR review
Greptile Summary
This PR updates the
pytest-asynciodependency from version 0.23.8 to 1.1.0 in the development dependencies section ofpyproject.toml. This is a major version bump that brings several improvements and one breaking change.The update introduces enhanced ContextVars propagation for Python 3.10 and older, automatic task cancellation when loop scopes end, and improved warnings for closed event loops. It also fixes issues with missing loops in task finally clauses and duplicate warning generation. Notably, version 1.0.0 removed the deprecated
event_loopfixture, which is the main breaking change.This change fits well within the Langfuse Python client's testing infrastructure. The project uses async functionality through
httpxfor HTTP requests and OpenTelemetry integrations, making proper async testing support important. The version constraint was updated from>=0.21.1,<0.24.0to>=0.21.1,<1.2.0to accommodate the new major version. The project's comprehensive CI setup with multiple Python versions should help catch any compatibility issues during testing.The upgrade also adds a new runtime dependency on
backports.asyncio.runnerfor Python 3.10 and older, which provides better async support for older Python versions that the project supports (Python >=3.9).Confidence score: 4/5