Philipp A.
Philipp A.
See also: - [joblib has a nice list of all the ways a max number of threads could be set](https://github.com/joblib/joblib/blob/ed0806a497268005ad7dad30f79e1d563927d7c6/joblib/_parallel_backends.py#L65) - [Dask sets several `*_NUM_THREADS` variables in some situations, but...
OK, findings by @Intron7 and me: - For `LocalCluster(processes=True)` (the default), doing this before running things: `dask.config.set({"distributed.nanny.pre-spawn-environ.NUMBA_NUM_THREADS": "1"})` (this should be upstreamed into dask: https://github.com/dask/distributed/pull/9076) - In any case, running...
OK so ideally all our dependencies are just implementation details, and we take care of mapping a user’s `sc.settings.n_jobs` to whatever the dependencies need. Unless we find a better solution,...
In this case it should just throw an error announcing that instead of silently failing to do the expected thing. Also I haven’t seen how you select which Bioconductor release...
Yeah, can we please get this and sphinx 9 support in ASAP? We’re upgrading to Python 3.12 `type` syntax, and only Sphinx 9 has support for it.
Oof yeah real nice. Actually my current project depends on that: https://github.com/flying-sheep/session-info2 The absence of this means that have to separate notebook execution from document building, which is a bit...
Hi, can you please create an issue with a minimal reproducible example? Alternatively please add a unit test that will trigger your newly added branch. You’ll be able to see...
Sadly I wasn’t able to figure that out: https://github.com/scverse/scanpy/issues/3051#issuecomment-2107394169 These days we have more rigorous standards in documentation, but when @fidelram added it we forgot to ask him to document...
Thanks for the investigation! @mumichae is this the same issue as the one you fixed in #2875?
Not in all situations: e.g. Linux distributions don’t build in venvs, they build with their system-packaged versions of a package Also Cython 3.1 is (probably already, otherwise soon) unmaintained, meaning...