Vlastimil Zíma

Results 67 comments of Vlastimil Zíma

It seems that could work, I have to try that sometime. Thanks for pointing it out.

OK, I tried hook like: ```toml pre_commit_hooks = [ "git add CHANGELOG.rst", ] ``` which works fine. The only problem is that I still have to use `--allow-dirty` to prevent...

Nope. It's an inherent feature of the process. The order of events is: 1. Change the `CHANGELOG.rst` 2. `bump-my-version bump ...` 1. check dirty files 2. run pre_commit_hooks - would...

Finally, I've managed to reproduce the deadlock by ```sh # This script is in fish shell for I in $(seq 100) echo ===== Attempt $I ===== timeout 300 ./python -X...

The new method is not documented, otherwise this looks good to me.

It produces `TypeError` on access to the view: ``` def _run_authentication(self, request: HttpRequest) -> Optional[HttpResponse]: for callback in self.auth_callbacks: try: if is_async_callable(callback) or getattr(callback, "is_async", False): result = callback(request) if...