fix(pyproject): remove asyncio from pip dependencies (stdlib module) - #1914
Closed
luojiyin1987 wants to merge 1 commit into
Closed
fix(pyproject): remove asyncio from pip dependencies (stdlib module)#1914luojiyin1987 wants to merge 1 commit into
luojiyin1987 wants to merge 1 commit into
Conversation
Contributor
|
@luojiyin1987 is attempting to deploy a commit to the Cua Team on Vercel. A member of the Team first needs to authorize it. |
f-trycua
requested review from
ddupont808,
f-trycua and
r33drichards
as code owners
July 16, 2026 11:21
injaneity
approved these changes
Aug 10, 2026
injaneity
pushed a commit
that referenced
this pull request
Aug 10, 2026
Collaborator
|
closing this as superseded by #3040. thank you for your contribution! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
asynciois a Python standard library module (available since Python 3.4), but it was incorrectly listed as a pip dependency inlibs/python/agent/pyproject.toml.The project's
requires-python = ">=3.11,<3.14", soasynciois guaranteed to be available withoutpip install. All 25 usages ofasyncioin this package are stdlibimport asynciostatements.Changes
"asyncio"from thedependencieslist inlibs/python/agent/pyproject.tomlCloses #1913