-
Notifications
You must be signed in to change notification settings - Fork 575
Fix build for Python 3.14 #638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
3dd22b3
4eea005
d8bc272
79f008b
74e109e
06d4232
20241b0
540e6ab
ae50a8e
d66df03
64e89ea
93d25d2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ jobs: | |
- "3.11" | ||
- "3.12" | ||
- "3.13" | ||
- "3.14" | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
env: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ cdef aio_isfuture = getattr(asyncio, 'isfuture', None) | |
cdef aio_get_running_loop = getattr(asyncio, '_get_running_loop', None) | ||
cdef aio_set_running_loop = getattr(asyncio, '_set_running_loop', None) | ||
cdef aio_debug_wrapper = getattr(asyncio.coroutines, 'debug_wrapper', None) | ||
cdef aio_AbstractChildWatcher = asyncio.AbstractChildWatcher | ||
cdef aio_AbstractChildWatcher = getattr(asyncio, "AbstractChildWatcher", ()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
cdef aio_Transport = asyncio.Transport | ||
cdef aio_FlowControlMixin = asyncio.transports._FlowControlMixin | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is
_typing.Tuple[str, ...]
necessary here?