Sigurd Spieckermann

Results 338 comments of Sigurd Spieckermann

> Yeah I'm not sure how maintainers usually deal with breaking changes in dependencies other than patching and owning support themselves, then do a major bump 🤔 @pawamoy Typically, some...

@frankieeder Could you provide a reproducible example please?

Makes sense to me. :+1: This doesn't work right now because the `--data-file` switch config uses Plumbum's [`ExistingFile`](https://github.com/tomerfiliba/plumbum/blob/aa56a167ba6684ea30ec5f51fd30567e2664b0bf/plumbum/cli/switches.py#L562-L568) type/validator which requires a path to be a file path but doesn't...

It turns out that Bash process substitution isn't identified via `Path(...).is_char_device()` but via `Path(...).is_fifo()`. Thus, Plumbum needs the following type/validator: ```python @Predicate def ExistingFIFO(val): """A switch-type validator that ensures that...

Perhaps that's a macOS vs. Linux (at least Ubuntu) difference. I'm on Ubuntu 22.04: ```console $ bash --version GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu) $ cat --version cat (GNU coreutils) 8.32...

@Sarah1103 I'm not a member of this project, so I have no permissions to set assignees. But please feel free to contribute a fix anyway.

@kevin-pw Consistency across CPU and GPU cannot be guaranteed: https://pytorch.org/docs/stable/notes/randomness.html

> - should it assume that all http URLs are git repositories, given this is the only supported case? (This what has been done in the test of this PR)...

Thanks for your contribution, @msclock, and sorry for taking so long to respond. Could you add a test case that fails without the fix?