Steven Loria
Steven Loria
you could create a Schema subclass that sets the meta options, like so ```python class DynamicSchema(Schema): class Meta: dateformat = "rfc" DynamicSchema.from_dict(...) ```
thank you for reporting! will investigate this soon. the `PickleType` [fix](https://github.com/marshmallow-code/marshmallow-sqlalchemy/pull/648) is an unlikely culprit, since it just ensures that models with a `PickleType` column properly get a marshmallow `fields.Raw`...
given that the suspected PR is in 1.4.1, @mistercrunch would you mind trying `marshmallow-sqlalchemy==1.4.0` to see if it's affected?
ok, thanks for narrowing it down. will investigate further within the next few days
sorry for the delay on this. haven't been able to dedicate time to marshmallow these past couple weeks. would definitely appreciate help on this, whether if it's an incomplete PR...
thanks! and no worries if you can't drive this. even double-checking that 1.4.1 is the culprit version is a big help. i suspect the this PR (the only one in...
Thanks for the PR! I've released it in 1.4.2. @mistercrunch wanna give it a shot in the superset tests? 👀
Closing since the issue can't be reproduced. Will reopen if someone discovers this again.
Thanks @jordanhamill for posting a repro case and looking into this. I don't have time to look into this right now, but would review a PR if you're working on...
Seems like something like this could be especially convenient when used with `required` and `allow_none`. ```python # make all fields required by default fields.set_defaults(required=True) ```