-
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
Marshmallow warnings #328
Comments
@corporate-gadfly Maybe I'm missing something, but I don't think that PR is relevant to this? This is an issue about deprecation warnings for Marshmallow 4 which should be fixed in the |
I think this is a duplicate of #276. |
This is slightly different. These warnings were introduced with marshmallow-code/marshmallow#1742 and released in Marshmallow 3.13.0. #276 is a deprecation warning in Marshallow for a different option name introduced in Marshmallow 3.10.0. |
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. As these are new parameters added in version 3.13.0, the minimum version requirement is bumped accordingly. fixes: lidatong#328
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
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
Trying to get rid of a number of warnings that started to show up when running my test suite. I am running:
This is test that can be used as repo:
These are the warnings:
Found a few suggestions for people having the same issue but nothing seemed to work. How should I rewrite my dataclass?
The text was updated successfully, but these errors were encountered: