DanCardin

Results 41 issues of DanCardin

I'm not sure if you're aiming for exact compatibility among python versions for all of the functions you support or not. But due to https://github.com/python/cpython/issues/90353, `get_type_hints` with `include_extras=True` has inconsistent...

I now see why https://github.com/python/typing_extensions/pull/94 opted to avoid copying the whole function 😮‍💨 Fixes https://github.com/python/typing_extensions/issues/310. Although its unclear to me whether/how fully replicating `ForwardRef` might have downstream effects on things....

As a user of python-on-whales in its capacity as a library (thanks for the library by the way!) I noticed the dependency on typer/tqdm and thought it looked weird. After...

Fixes https://github.com/gabrieldemarmiesse/python-on-whales/issues/512

Not going to work in the short term. Some of the required functionality isn't merged yet, and none of it is in a released version. Also, type-lens only supports python...

```python arg: Annotated[ int, cappa.Arg(short="-v", action=cappa.ArgAction.count), cappa.Arg(long="--verbosity"), ] = 0 ``` Is the proposed syntax for this so far. This might be nicer as `X | Y`, but that gets...

Fixes https://github.com/DanCardin/sqlalchemy-declarative-extensions/issues/59