Release v0.10.3#64
Merged
Merged
Conversation
Bump version to 0.10.3 and ship the accumulated fixes since 0.10.2, most notably the /bytes endpoint fix (returns bytes instead of bytearray) for WSGI compliance with Werkzeug >= 2.1 / 3.x. Also adds a regression test that inspects the raw WSGI iterable so a bytearray regression can't slip past the (coercing) Werkzeug test client.
GitHub auto-fails jobs using the deprecated actions/upload-artifact@v3 and download-artifact@v3, so CI never reached the test step. Bump both to v4. upload-artifact@v4 errors on duplicate artifact names, so in the test matrix the requirements.txt upload is gated to a single job (the docker job only needs one copy).
The mainapp extra installs gevent, which publishes no PyPy wheels and fails to compile from source on PyPy under Cython 3 (corecext.pyx references the removed py2 'long' builtin). httpbin targets CPython only (see pyproject classifiers), and the release/publish pipeline tests CPython 3.10 alone, so PyPy CI was non-blocking dead weight that had bit-rotted.
Add 3.13 and 3.14 to the CI matrix and the package classifiers. gevent, greenlet, and brotlicffi all publish cp313/cp314 (and abi3) wheels, so no source builds are required.
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.
Cuts release v0.10.3 and gets CI green again.
/bytesfix (returnsbytes, notbytearray) for WSGI compliance with Werkzeug ≥ 2.1 / 3.x, plus a regression test that checks the raw WSGI body — unblocks vcrpy dropping itswerkzeug==2.0.3pinactions/upload-/download-artifactv3 → v4 (GitHub auto-fails the deprecated v3)