Micaiah Hanke
Micaiah Hanke
[changelog](https://marshmallow-jsonapi.readthedocs.io/en/latest/changelog.html#id2) v0.24.0: ``` Drop support for marshmallow 2, which is now EOL (#332). ``` [install requirements](https://github.com/marshmallow-code/marshmallow-jsonapi/blob/0.24.0/setup.py#L4) v0.24.0: ``` INSTALL_REQUIRES = ("marshmallow>=2.15.2",) ``` the `setup.py` file should be updated to reflect...
``` @aioresponses fn(mock): mock.post(url, status=200) method_that_calls_url_with_headers() print(mock.requests[('POST', URL(url))][0].kwargs['headers']) ``` Currently, only `args`, `kwargs` are available for a request to a particular (`method`, `url`) tuple. It would be nice to be...