-
Notifications
You must be signed in to change notification settings - Fork 154
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
fix(mm): Replace deprecated Marshmallow Field parameters #351
base: master
Are you sure you want to change the base?
Conversation
This would be nice to clean up the warning spews! |
In case anyone is seeing hundreds of errors, is waiting on this fix to be merged (and uses pytest) adding the following to a
|
I would love for this fix to be merged! |
@stevenpackardblp please update your PR and we can merge ;) |
@stevenpackardblp another ping :) if no reply in a week I'll take over this PR and re-create it |
Let me refresh my workspace this week and see if I can get this rebased. Apologies for missing the first ping. |
it would be great if this could be merged 🙏 |
Agree, would be great if this could be addressed! |
4830e2b
to
ef31090
Compare
@george-zubrienko big apologies for the delay, I just rebased it. |
In Marshmallow 3.13.0, the `default` and `missing` parameters of the `Field` object were deprecated and replaced with `dump_default` and `load_default` respectively. fixes: lidatong#328
rebased again. |
It would be great to get this merged, so the deprecation warnings can finally be addressed 🙏 |
In Marshmallow 3.13.0, the
default
andmissing
parameters of theField
object were deprecated and replaced withdump_default
andload_default
respectively. As these are new parameters added inversion 3.13.0, the minimum version requirement is bumped accordingly.
fixes: #328