Laurent Sorber

Results 87 comments of Laurent Sorber

Let's wait until they support `pyproject.toml`: https://github.com/codespell-project/codespell/issues/2055

Hey @tanguyNaets, thanks for this PR! It's a pretty big one, so it will take some time to go through this in detail. Are there any smaller parts you could...

Related: https://github.com/radix-ai/poetry-cookiecutter/pull/63

I think that's a great idea: there's definitely a gap that Poetry Cookiecutter doesn't fill yet with regards to infrastructure provisioning. Another gap that we can fill is being able...

Hi @carlosperate, thanks for considering our project! We've continued actively developing the template since I originally posted it, and are now at 34 GitHub stars. Does that meet the threshold...

I believe subclassing `Constrained*` is preferable over using `con*` because of https://github.com/samuelcolvin/pydantic/issues/975: mypy will complain that `T = con*(...)` is not a valid type. I tried using `constr` instead of...

If I may challenge that decision: the primary use case for using Decimals is that you need to store and work with arbitrary precision decimals. Serialising these as floats will...

@samuelcolvin would you consider reopening this discussion, or otherwise providing some insight as to why the current behaviour is the desired behaviour? As it stands, there is little value in...

With Cookiecutter 2.2.0's support for [boolean variables](https://cookiecutter.readthedocs.io/en/latest/advanced/boolean_variables.html), perhaps this PR could also be extended to support transitioning from string values such as "0" or "1" to the boolean values `false`...

> what how we serialize Decimals when dumping a model to JSON, this should change to be a str - that's what this issue is about I would consider two...