Justus Magin

Results 244 comments of Justus Magin

to support `.` and `..` I believe you need some sort of path normalization. Something like `PosixPath.resolve` but on `NodePath`, maybe? That converts to absolute, though, so we'd need to...

yes it is, but I think we're better off redesigning the HTML repr. This is something I wouldn't know too much about (I'm not very familiar with HTML / CSS),...

I agree, we should put this on hold until the merge is done (and no worries if it ends up taking longer)

A few hints here: - for `conda` in CI `mamba-org/setup-micromamba` is a good option as it is generally much faster than `setup-miniconda` and it has built-in environment caching, which on...

thanks for the PR and sorry for the delay, @tbody-cfs. This is definitely something on our roadmap, but unfortunately I didn't have too much time to work on this in...

If I understand the page you mentioned correctly, we'd need mostly `bincount` and the `at` / `reduceat` method of the `min` / `max` / `add` / `multiply` ufuncs. As far...

you've got two different versions of dash that make use of surrogates: `b"\xe2\x80\x90"` and `b"\xe2\x80\x93"`. To replace both, you'd have to: ```python s = "..." s.encode("utf-8").replace(b"\xe2\x80\x90", b"-").replace(b"\xe2\x80\x93", b"-").decode("utf-8") ``` This...

> It looks like the Kerchunk package you are using is a bit older `0.0.6` (the most recent release) was created before the fix, so I guess this calls for...

As I pointed out in https://github.com/xarray-contrib/pint-xarray/issues/216#issuecomment-1854413382, it is possible to use `pint` + `xarray` without `pint-xarray`, so most of the tests that do check compatibility live in `xarray`'s test suite...

`pint-xarray` is a glue / convenience package: while it is possible to use (most of) `pint` + `xarray` without `pint-xarray`, it is not very convenient to do so: creating quantities,...