We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The attr.ib(convert=callable) option is now deprecated in favor of attr.ib(converter=callable). This is done to achieve consistency with other noun-based arguments like validator. convert will keep working until at least January 2019 while raising a DeprecationWarning.
The attr.ib(convert=callable) option is now deprecated in favor of attr.ib(converter=callable).
This is done to achieve consistency with other noun-based arguments like validator.
convert will keep working until at least January 2019 while raising a DeprecationWarning.
https://github.com/python-attrs/attrs/blob/master/CHANGELOG.rst#deprecations
Reported on the AWS forums: https://forums.aws.amazon.com/thread.jspa?threadID=271087
We'll need to rename each use of "convert" to "converter" and bump requirements to attrs >= 17.4.0.
attrs >= 17.4.0
The text was updated successfully, but these errors were encountered:
mattsb42-aws
No branches or pull requests
Problem
https://github.com/python-attrs/attrs/blob/master/CHANGELOG.rst#deprecations
Reported on the AWS forums: https://forums.aws.amazon.com/thread.jspa?threadID=271087
Solution
We'll need to rename each use of "convert" to "converter" and bump requirements to
attrs >= 17.4.0
.The text was updated successfully, but these errors were encountered: