-
Notifications
You must be signed in to change notification settings - Fork 14
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
Fixes for multipart 1.0.0 #75
Conversation
The new parser in multipart 1.0.0 requires CRLF rather than LF line endings: defnull/multipart#55 Fixes most of #74. The one remaining failure is a regression of #44 (lack of `.seekable()` on FileUpload objects).
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.
Looks okay to me. Needs a changelog entry and a typo fix.
Co-authored-by: David Glick <david@glicksoftware.com>
Mention the range of Python versions that need the workaround so we can remove it once Python 3.10 goes EOL. Co-authored-by: Michael Howitz <icemac@gmx.net>
I would like a zope.publisher 7.0.1 release. Are we still using zest.releaser to make releases? Also, I think I should add Python 3.12 to the build matrix before I pull the trigger. Maybe drop 3.7 while at it. |
Yes, |
This fixes both issues and makes the tests pass.
Closes #74, #44.