Woo! I'm excited to mess w/ 3.13.
I've been pushing to update our Python version, and we went from 3.7 a couple years ago to now being on 3.11 everywhere, and we should get to 3.12 by EOY (and maybe 3.13 if 3.12 goes well). We ran into some weird issues with pytest
eating up all the RAM in 3.12, but that was nearly a year ago now (hence why we went to 3.11 first), so hopefully we won't have as many roadblocks this time.
WASI is now a Tier 2 supported platform
Huh, I'm going to have to play with this. We have a lot of shared logic between the FE and BE (mostly to support offline mode for our app), and we've had bugs when someone forgot to change both. So I'm interested in trying this out for shared business logic and small computations.
On this, anyone know of any projects that can turn a pip-installable package into a WASM module? Ideally, it would fit in our existing FE build pipeline so I could just import it as an ES6 module and the pipeline would generate the file as needed. I'll certainly look into it when the time comes, just wondering if anyone has already used it.