Simon
Simon
I've created #20327 which bumps `sharp` and adds the `unlimited` flag. However, this depends on https://github.com/immich-app/base-images/pull/239.
This seems to be a bug in Paramiko itself: https://github.com/paramiko/paramiko/issues/2462 There are PRs for this issue: https://github.com/paramiko/paramiko/pull/2465 / https://github.com/paramiko/paramiko/pull/2475
I've opened #1227 to address the docs part of this issue. Accepting `pathlib.Path` can be handled later on :+1:
I can submit a PR if raising an error message is the way to go
@javsalgar Thank you, I've created a PR: #29141
An `assert` statement was added as part of #1082: https://github.com/pyinfra-dev/pyinfra/blob/9ce7ac44ef6e9d5d8d8a926836e8d294cccbff29/pyinfra/operations/files.py#L854-L856 The following code now causes an AssertionError: ```python from pyinfra.operations import files files.template(name='Template', src='template.j2', dest='/tmp') ``` However, the error message...
I encountered the bug while using the `local` connector. I don't know (yet) if other connectors are affected.
Good suggestion, I'll propose a PR :)
@Fizzadar This issue can be closed (-> https://github.com/pyinfra-dev/pyinfra/pull/1247). I somehow forgot to include the appropriate `Closes` annotation.
I can reproduce the issue. One downside of your proposed fix is the inconsistency with all the other operations which allow the [global](https://docs.pyinfra.com/en/3.x/arguments.html) `name` argument as the first argument :/...