Dimitri Papadopoulos Orfanos

Results 835 comments of Dimitri Papadopoulos Orfanos

After adding [allow-dict-calls-with-keyword-arguments](https://docs.astral.sh/ruff/settings/#lint_flake8-comprehensions_allow-dict-calls-with-keyword-arguments), most occurrences of [C408](https://docs.astral.sh/ruff/rules/unnecessary-collection-call/) have disappeared. A few instances of `dict()` → `{}` have been left behind. Should I discard them as well and disable [C408](https://docs.astral.sh/ruff/rules/unnecessary-collection-call/)?

* The Python 3.14 CI errors might be related to https://github.com/python/cpython/issues/133653. * Not sure about the PyPy 3.10 CI error, but it seems unrelated to this PR as well.

I had to rerun `C401` and `C408` because rebasing was impossible. I guess I somehow got the options wrong. Will try again.

Reapplied `C408` after making sure [allow-dict-calls-with-keyword-arguments](https://docs.astral.sh/ruff/settings/#lint_flake8-comprehensions_allow-dict-calls-with-keyword-arguments) is true.

This can be left for later, after migrating to ruff.

I would need help to fix all issues: ```console $ mypy src/blosc2 [...] Found 170 errors in 8 files (checked 10 source files) $ ``` Static typing annotations are not...

Same here, but unfortunately `path:` also fails: * An **`url:`** key followed by a **`file://`** URL fails to build: ```yaml source: url: file:///path/to/matlab-runtime/MATLAB_Runtime_R2019b_Update_9_glnxa64.zip ``` rattler-build just copies the ZIP file,...

While `/path/to` is indeed on a network (NFS) share, our workstations have 1 Gb/s network interfaces and our storage infrastructure is a [CephFS](https://ceph.io/en/) cluster with quite decent throughput: ```console $...

I'm not used to building/running Rust programs, but chances are function [extract_zip](https://github.com/prefix-dev/rattler-build/blob/69c38d3f43e58b4c472cd5243484267c45724c20/src/source/extract.rs#L152-L184) stalls in our context: extract_zip ```rust /// `.zip` files archived with compression other than deflate would fail. pub(crate)...