Roman Yurchak
Roman Yurchak
It would be interesting if it was possible to run cross-validation in parallel. This was also requested by @zhangJianfeng in https://github.com/paris-saclay-cds/ramp-workflow/issues/250#issuecomment-723917761 There are two use-case here, - local training. E.g....
Closes https://github.com/pyodide/pyodide/issues/3093 Includes micropip from https://github.com/pyodide/micropip One thing I'm not sure about is whether we still want to run the micropip tests there or if we rely on them passing...
The idea to rely on conda-forge for building Python packages to WebAssembly has been mentioned for a while now (https://github.com/iodide-project/pyodide/issues/38#issuecomment-410270067, https://github.com/conda/conda/issues/7619, https://github.com/regro/cf-scripts/issues/1052#issuecomment-651995625), and in this issue I wanted start a...
Continuing with the effort of making the code base more approachable (https://github.com/pyodide/pyodide/issues/2014), I would propose to move micropip to a separate repo in the Pyodide org. ### Advantages - mich...
Currently, I'm getting a checksum verification failure when installing numpy in the [dev REPL](https://pyodide.org/en/latest/console.html) The error is, ``` None of the “sha256” hashes in the integrity attribute match the content...
As reported by @henryiii in https://github.com/henryiii/level-up-your-python/discussions/2. The expected behavior of raising StopIteration via `next` is ```py >>> x = (x for x in range(1)) >>> next(x) 0 >>> next(x) Traceback...
Currently, we unvendor tests via the `build/unvendor-tests` flag. It could be useful to additionally have a more generic unvendoring mechanism to unvendor other sub-components. For instance, some packages have included...
As proposed in https://github.com/pyodide/pyodide/pull/3055#pullrequestreview-1094620159, > it would be better to have a single flag library: which can be static, shared, or False. Rather than two binary flags library and sharedlibrary....
Now that we have switched to wheels for packages, our current distribution model reaches its limits as it doesn't allow, - having multiple available versions of a package for a...
The question is whether we update to Python 3.11 in the next release (0.22) or wait for one extra release for the packages we ship to get a compatible release....