Dimitri Papadopoulos Orfanos
Dimitri Papadopoulos Orfanos
The output dir is `/tmp/channel`, it's the local disk.
Now about the cache. We used to have home dirs on NFS servers, but that's not the case any more. Besides, even with home dirs on NFS servers, we used...
What does `progress_bar.wrap_read` really do? Could it be that it somehow adversely affects disk reads?
I `unzip` in `/tmp`: ``` $ mkdir /tmp/channel $ $ cd /tmp/channel/ $ $ time unzip /path/to/matlab-runtime/MATLAB_Runtime_R2019b_Update_9_glnxa64.zip Archive: /path/to/matlab-runtime/MATLAB_Runtime_R2019b_Update_9_glnxa64.zip inflating: sys/os/glnxa64/libgcc_s.so.1 inflating: sys/os/glnxa64/README.libstdc++ . . . inflating: productdata/35212.txt finishing deferred...
I do see a [`x86_64-unknown-linux-musl`](https://github.com/prefix-dev/rattler-build/actions/runs/11594061424/job/32279455379?pr=1146) build, but am not sure how to install/run locally (I am new to Rust). Is it as simple as `git clone` and `cargo build`? EDIT:...
The linting errors are ~~not~~ caused by existing code, not by my changes. I would like to add `noqa: E231` in this specific case. Thoughts?
Should be fixed by running ` ruff check --select E231` on this specific file (requires `--preview` by the way): ```console $ ruff check --preview --select E231 numpy/_core/tests/test_nditer.py --fix Found 33...
Let's remove the notebooks then.
Superseded by #2897.
ssl_disconnect is currently called at the very beginning of ssl_connect. I've always thought this is weird, but haven't been able to fix it so far. Perhaps that's the fix... Unfortunately,...