Stefano

Results 12 comments of Stefano

I don't think it does (if it does, I don't know how). Using: ``` parameter :name => :something, :in => :body, :schema => { :$ref => '#/components/schemas/something' } ``` is...

Hey @BigCheese83 how did you manage to solve it? I'm having the same issue.

Thank you @fdutton !

What about just making the `-` and `.` parts configurable? I think [here](https://github.com/python-semantic-release/python-semantic-release/blob/c633414ae2a5518d21b852be66eac1cbc2dd8e87/semantic_release/history/__init__.py#L29) and [here](https://github.com/python-semver/python-semver/blob/a1604fb9e8841d6cddbaff97bd4b8057b9600ae5/src/semver/version.py#L87-L89), but might need to have a closer look. So one can have full control over...

[This is where the issue is in my case](https://github.com/python-poetry/poetry/blob/master/src/poetry/installation/executor.py#L712). I can (very slowly) get to the end of the stream if I increase `REQUESTS_TIMEOUT` to e.g. `100` (downloading `torch=1.11.0`). I...

Fair enough, then #7081 is a good idea. Hope it's coming soon and going to stay.

Hey @elprans I'm experiencing the same error when trying to simply _select_ a SUPER field from Redshift. Did you already have an idea of what are the main points to...

For anyone else stumbling into this: the solution for me was to register a custom encoder/decoder for the `super` type via `asyncpg`'s `Connection.set_type_codec`.

hey @remigabillet, I think that could depend specifically on the error you're getting, but you can find an example [here](https://magicstack.github.io/asyncpg/current/usage.html#example-automatic-json-conversion). So for example: ```python # ... await connection.set_type_codec( typename="super", schema="pg_catalog",...