Laurent Mignon (ACSONE)

Results 209 comments of Laurent Mignon (ACSONE)

@sebastienbeau It depends. When a Pydantic model is 'linked' to an odoo model, A method `to_odoo_model` into the pydantic model makes sense. In the case of the `Transaction` model, this...

Thank you for the contrib @GuillemCForgeFlow! Unique email is a constraint that could be implemented in different way depending of the business context. In your case, you would like to...

@sebastienbeau For sure a split would be welcome but the cost could be high. The creation of `shopinvader_partner` and could ease the cleanup of place where we explicitly use the...

@sebastienbeau I would tend to go with 'solution 2'. The most important consideration to keep in mind is to have a symmetry in the module naming of actual shopinvader addon...

Hi @matthieusaison All this seems to be a hard work. Do you plan to finalize this work in the coming days or do you need some helo on it? Regards,...

@matthieusaison @sebastienbeau Thank you for this hard work. All this seems to go into the right way. I haven't found any issue at first read of this giant PR.

> are you running alpine or nixos? > > https://github.com/jdx/mise/blob/9138e2e6ec09a36c7791c9a6b4e5f7ab138fcb63/src/config/settings.rs#L178 Ubuntu 22.04.4 LTS AKA jammy ![image](https://github.com/jdx/mise/assets/544090/a4ebad83-c2e0-41d5-89bf-fdb76b431e27)

Running the following rust program: ```rs use sys_info; fn linux_distro() -> Option { match sys_info::linux_os_release() { Ok(release) => Some(release.id?), _ => None, } } fn main() { match linux_distro() {...

> so the reason is pretty simple, indygreg just hasn't created a release with 3.11.9 yet: https://github.com/indygreg/python-build-standalone/releases Do you mean that I've to check which version is available on https://github.com/indygreg/python-build-standalone/releases...

> Perhaps a setting could be added to use the latest precompiled version and never use compiled versions. As long as you explicitly specify that you don't want to build...