karlicoss

Results 351 comments of karlicoss

huh? did you put your token in the quotes? as in `ipaper("some_id", "123secret")`, not `ipaper(some_id, 123secret)`

Right, seems that the the API just doesn't return anything. I could try debugging further, but would need to do it myself, not sure how to do it over github....

Hey, sorry, only just got to this! Is there any chance you can post a full traceback? I tried a message with emoji and it works for me, so not...

I'm getting this issue when I'm using setup.py with https://github.com/pypa/setuptools_scm I have the following configuration: ``` use_scm_version={ 'version_scheme': 'python-simplified-semver', 'local_scheme': 'dirty-tag', }, setup_requires=['setuptools_scm'], ``` With setuptools `66.0.0`, I get ```...

Any chance we could get this merged? :) Happy to help if I somehow can

also a slightly different stack trace I managed to get for the same issue (but can't reproduce in isolation for some reason) ``` [pyinfra_cli.exceptions] File "/home/karlicos/.local/share/pipx/venvs/pyinfra/lib/python3.12/site-packages/pyinfra_cli/main.py", line 222, in cli...

Hi! Sorry, I missed it. I'm a little reluctant as python offers gazillion different installation options, and conda is a relatively niche one. But I guess it doesn't hurt much!

Switching to "Integrated player" solved the same issue for me! In addition, seems like it fixed issue when Jellyfin was eating 400% CPU transcoding MKV movies with subtitles (`PGSSUB`, mediainfo...

@RBerga06 I'm also using uv + hatch, and the `[tool.hatch.build.targets.wheel]` works for me https://github.com/karlicoss/pymplate/blob/6db0f7c2cc402d844d038554d30246f418772493/pyproject.toml#L40-L53

ran into the same issue, just sharing a shorter reproducer ``` items: list[int] = [] for i in items: pass print(i) # will fail in runtime! ```