Thomas Pollet
Thomas Pollet
Hi, 3.5.2 is the LTS on ubuntu, I was about to open the same issue: * cattrs version: 0.9.0 * Python version: 3.5.2 * Operating System: ubuntu ### Description I...
fwiw, I fixed this issue by including #include "internal-fn.h" in 4.9.3/plugin/include/gimple.h. however make still fails now: tests/cpychecker/refcounts/uninitialized_data/comparison: OK tests/cpychecker/refcounts/uninitialized_data/function_arg: OK tests/cpychecker/refcounts/unrecognized_function: OK tests/cpychecker/refcounts/unrecognized_function2: OK 310 successes; 2 failures; 0 skipped...
Hi, `due_date` in your example should not be available via `PATCH` or `POST`. It does show up in the swagger but it should be omitted from serialization when these requests...
Hi, If you can tell me what the "definitions" should look like, or how to generate them from the models, I can merge them in the swagger. The swagger creation...
Using marshmallow-sqlalchemy would be a good idea, but quite a big change. I started with safrs before marshmallow-sqlalchemy existed, so I never used sqlalchemy for safrs, but this would be...
I've added some more models to the "definitions". LMK if it doesn't work or you'd require more verbosity.
Helllo Olivier, I forgot about this and I will look into it when I find some time the coming weeks. I'm not too familiar with using OAS to generate client...
I (sort of) added this functionality (https://github.com/thomaxxl/safrs/commit/b8405f5f725da5021b647babc88303fdf6846b89) . But, following POST ```bash curl -X POST "http://localhost:5000/Order/" \ -H "accept: application/vnd.api+json" -H "Content-Type: application/json" \ -d ' { "data": { "attributes":...
Hi, I've switched off adding relationships, but it can be enabled by setting SAFRSBase._s_allow_add_rels = True To get Services/add_order, I use this: https://gist.github.com/thomaxxl/5952973073800c71835826aa18bccc3f [image: image.png] On Wed, 3 Mar 2021...
Hi, This error happens when you request a non-existing relationship in the include URL query parameter. Removing or modifying this parameter should resolve the problem. I do wonder how this...