-
Notifications
You must be signed in to change notification settings - Fork 43
Update #170
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
Update #170
Conversation
The latest h11 events are frozen dataclasses and hence the headers can't be overwritten.
Python 3.6 reached End Of Life a month ago.
These are now preset as h11 is typed.
| 'Programming Language :: Python :: Implementation :: PyPy', | ||
| ], | ||
| install_requires=[ | ||
| "dataclasses ; python_version < '3.7'", |
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 there a specific incompatibility with dataclasses on 3.6 that makes it easier to simply drop 3.6 and move to "native" 3.7?
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.
dataclasses was added to the stdlib in 3.7
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.
yes, my question was actually: why drop support for 3.6?
or was this needed to fix the compatibility with h11?
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.
oh right. 3.6 is now unsupported, https://endoflife.date/python. h11 will drop 3.6 in the next release as well.
H11, and python versions
fixes #169