Jérôme Lafréchoux

Results 373 comments of Jérôme Lafréchoux

> ``` > try: > from ordered_set import OrderedSet > except ImportError: > from marshmallow.orderedset import OrderedSet > ``` I'd rather settle one way or another than maintain both ways...

Hi. Thanks for the constructive feedback. I'm pretty busy these days so I can't promise I'll provide quick answers. This was partly discussed in #51. I closed the issue back...

I don't see how to do that. I think last time I needed this I added a "data" key, like `{"data": [my list of stuff]}`.

This will only fix the example, not the documentation. A lot of things can be achieved using pre/post_load/dump but those can't be automatically documented by apispec, of course. I don't...

Here's the GHA setup I use in flask-smorest. https://github.com/marshmallow-code/flask-smorest/blob/master/.github/workflows/build-release.yml It uses a `PYPI_API_TOKEN` I defined in Settings -> Security -> Secrets -> Actions.

On a related topic, I've been using pip-tools recently (https://github.com/BEMServer/bemserver-core, https://github.com/BEMServer/bemserver-api), inspired by Pallets repositories and API Flask [1]. I like the fact that the build can be reproducible with...

Also related, we're facing CI limitations in apispec so I'm probably going to move to GHA as soon as I get the time. https://github.com/marshmallow-code/apispec/pull/747

> I used to pin the version of twine in one of my projects, but then realized that we were just blindly bumping to the next version anyway. Yeah, exactly...

To support several API versions, we run multiple versions of the code at different URLs. I never tried to have multiple API versions in the same application version. I don't...