Robert Schweizer

Results 20 issues of Robert Schweizer

## Description of the problem, including code/CLI snippet Most of the functions with a `streamed: bool` parameter currently return a `Union[..., requests.Response]` or `Optional[bytes]` type. In fact, the received return...

typing

On Windows, when I have source and test files in separate subfolders, testmon does not rerun tests correctly after I changed files. If I run it again, testmon creates a...

This prevents the call to `absl.logging.info()` at import. # Description For us, the call to `absl.logging.info()` was particularly problematic, because it calls `logging.basicConfig()`. Our code later called `logging.basicConfig(level=logging.INFO)`, but that...

models:official
ready to pull

Note: Previously reported in #570, probably very related to #676. ### Expected behaviour Pylint was previously able to inspect cv2 member existence with the extension-pkg-whitelist parameter. ### Actual behaviour For...

```py from collections.abc import Callable from types import NotImplementedType class MyClass: pass callable_union: Callable | NotImplementedType reveal_type(callable_union) if not isinstance(callable_union, NotImplementedType): reveal_type(callable_union) # Gets narrowed correctly class_union: MyClass | NotImplementedType...

## Description Closes https://github.com/commitizen-tools/commitizen/issues/519 CLI flag name: --tag-regex Heavily inspired by https://github.com/commitizen-tools/commitizen/pull/537, but extends it with a smart default value to exclude non-release tags. This was suggested in https://github.com/commitizen-tools/commitizen/issues/519#issuecomment-1163923719 I...

help wanted
pr-status: wait-for-modification

## Description Try to `git fetch` missing tags if working on a shallow clone. This allows reliably setting up your CI to only fetch the latest changes. E.g. Gitlab CI...

help wanted
pr-status: wait-for-modification

- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of geopandas. - [ ]...

bug
upstream issue

`raise_on_error_status` raises a `httpx.HTTPStatusError` on all error response codes without decoding. This can later be improved to add an exception that includes the decoded content, or to even raise different...

See individual commits for details