-
-
Notifications
You must be signed in to change notification settings - Fork 344
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
Please make a new release #2655
Comments
Hi, I've been aiming for a release soon after 3.7 is no longer in our compatibility window (~a month), would that work? Additionally, is async-generator really the only thing broken for 3.12? We have a bunch of test cases failing there, detailed in #2646. (Just checking if those matter!) |
I've seen only 1 new test fail on Gentoo compared to Python 3.11 ( I'm currently playing with a snapshot from current git, so hopefully that'll be good enough before the next release. |
Hi, would it be possible to publish a new release before waiting for the support end of Python 3.7? I don't care about 3.7, but the last release of trio was in September of last year, which is quite a while. I'm specifically looking for support for generic typing of The most recent release of class MemorySendChannel(trio.abc.SendChannel[T_contra]): ...
class MemoryReceiveChannel(trio.abc.ReceiveChannel[T_co]): ... This just bit me a bit as a new user of trio, because I thought that this was supported. Right now I get this error when trying to implement generic memory channels:
class EventListener(Generic[TEvent]):
sender: trio.MemorySendChannel[TEvent]
receiver: trio.MemoryReceiveChannel[TEvent]
... Installing trio from git is not an option for me, so I'm kindly asking for a new release. Thanks! |
3.7 EOL is in two weeks. I won't personally be able to roll a new release before that, but maybe someone else will. You can use |
Are there any blockers / particular issues that should be merged before release @A5rocks? |
|
🚀 🚀 🚀 |
Thanks! |
Could you please make a new release? I'm specifically looking for the
async_generator
dependency being removed, as that should be good enough to enable Python 3.12 support in the Gentoo package.The text was updated successfully, but these errors were encountered: