-
Notifications
You must be signed in to change notification settings - Fork 79
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
Add Python 3.12 to test matrix. #667
Conversation
|
this is a cache issue. I don't know how we can clean all caches on workers. Locally I had to nuke |
Caches can be managed here, although we should also change caching to use version specific keys 🤔 |
not a cache issue actually, I'm getting the same error locally |
7f1d0cc
to
7ea118f
Compare
Not sure if my last commit is backward compatible, let's see. |
…thon. The gzip._GzipReader we're inheriting from had some changes to stay up to date with changes in zlib library and to perform some optimization. Specifically: - GzipFile.read has been optimized. There is no longer a unconsumed_tail member to write back to padded file. This is instead handled by the ZlibDecompressor itself, which has an internal buffer. - _add_read_data has been inlined, as it was just two calls. We've adapted our own code to reflect these changes. More info: python/cpython#97664
7ea118f
to
c09b4a0
Compare
See #666