James Braza

Results 182 comments of James Braza

See https://github.com/Track3/hermit/issues/27#issuecomment-450775241, does this help?

I would like to make a plug within my company's software team to use pint for units. Having typing is a huge plus. I see https://github.com/hgrecco/pint/pull/1259 was merged, is that...

@native-api firstly, that's an awesome feature in micro versions, thank you! I think this issue was also about adding `pyenv install` args: - `pyenv install --pin-global 3.10`: will install 3.10.X...

Yeah agreed, `pyenv install 3.10` works as desired! However, we still have to have further `pyenv` calls after installation: ```bash pyenv global 3.10.X # X here has to match what...

Oh that's nice, I like that and see what you mean, yes it does automate version propagation between the commands (though only for the latest bugfix version). I guess I...

If https://github.com/srstevenson/nb-clean/pull/159 was merged and released in `2.4.0`, should this issue be closed as completed?

I gave this a whirl tonight. `httpx-sse` doesn't work for testing with `StreamingResponse`, because the content type header is not `text/event-stream`

Hello friends, last night I hunted down the issue to `starlette.testclient._TestClientTransport.handle_request`. I believe the issue is because `_TestClientTransport`'s [portal.call](https://github.com/encode/starlette/blob/0.27.0/starlette/testclient.py#L339) actually fully runs the app's endpoint (including the generator), as opposed...

Should this issue be closed? I think it was resolved

The workaround from @raceychan above: > ```python > def dict( > self, *args, **kwargs > ): > changed = set() > ... > return res > ``` Note this is...