Aarni Koskela

Results 257 issues of Aarni Koskela

This makes `example_tts.py` work OOTB on my Macbook – otherwise it would try to load tensors onto CUDA devices, which are notably missing. Should also make CPU inference work similarly...

This PR: * unpins the Numpy upper bound dependency, to allow running on (e.g.) Python 3.13, where no precompiled version of the ancient Numpy exists * drops the sole use...

Applies transformations that might be wrong and need human eyes to verify. Right now this means looking at assignments etc. also within sub-scopes, and we can't currently verify whether those...

```python def foo(data): if True: foo = data.get("blah") if foo: return foo.copy() return data.copy() ``` does not get walrused, even if `foo` is definitely only used in the `if` block....

When running as a standalone tool, it's nice to have a dry-run mode.

Otherwise files in e.g. `~/build/myproject/...` will never be read. (Can you guess where my projects are, for historical reasons, stored?) Basically like https://github.com/astral-sh/ruff/pull/2471.

Would crash with `commonpath() arg is an empty sequence` otherwise.