Karim Amzil
Karim Amzil
I also ran into this issue when preparing to use this plugin in our project. If I at some point make changes to the documentation, I can never use the...
Not everyone uses only "latest" as a reusable tag. We're using environment names, e.g. dev and test, to label images based on the environment they're currently deployed to. So would...
If everything is fine, `dump` returns an ordered dict of the object, e.g. `{"hello": "world"}`. If handling object type fails, it returns `(None, {"_schema": "Unsupported object type: something"})`. How are...
I added a workaround for this to my subclass of `OneOfSchema` but it's very ugly: ``` class MySchema(OneOfSchema): def _dump(self, obj, *, update_fields=True, **kwargs): res = super()._dump(obj, update_fields=update_fields, **kwargs) if...
Even if you set user to non-root with `user` option in docker-compose.yml, all the files in the volumes are still owned by root user, e.g. the cache files in the...
Using non-anonymous and explicit (bound?) volumes instead of anonymous together with pre-creating or chowning the folders worked for me. Thanks @BenRoe for the tip.
This would be very handy when working with data (de)serialization. I'm sure many devs building on Marshmallow or Pydantic feel the same. Being able to easily convert dataclasses to TypedDicts...