my1e5
my1e5
To add to this. If I install `cz` globally using `pip`. ``` $ pip install --user -U Commitizen ``` Then `cz bump` works in all my non-rye python projects. But...
Did some more digging ``` $ rye run cz --debug bump fatal: not a git repository (or any of the parent directories): .git Traceback (most recent call last): File "",...
I'm encountering this issue too. Can confirm that rolling back to `2023.6.30` fixes the bug. There hasn't been any activity on the PEP 712 discussion board for quite a few...
This bug is still present in `1.10.1`
Adding to this, it would be nice to pick up missing attributes in dataclasses/attrs. For example ```py @dataclass class Foo: """My class. Attributes: x: The x attribute. """ x: int...
It's a feature that has been requested before - see https://github.com/hoffstadt/DearPyGui/issues/1504 Please note, even Dear ImGui (which DPG is built upon) doesn't have a wrap text option for multiline input...
See https://github.com/hoffstadt/DearPyGui/issues/1380
I've found an alternative solution is to use `ssh`. Requires each user to have ssh keys set-up with `gitea`, but then it does work as it did before with `pip`....
Thanks a lot for your explanations. I would like to always use the latest version of rye rather than fix a specific version. I guess I'm a bit confused why...
Tried setting `version: '0.33.0'` and `cache-local-storage-path: /tmp/setup-rye-cache` ```yaml - uses: eifinger/setup-rye@v2 id: setup-rye with: version: '0.33.0' enable-cache: true cache-local-storage-path: /tmp/setup-rye-cache ``` And `eifinger/setup-rye@v2` took 1s! Would be really interested to...