Ryan Morshead

Results 319 comments of Ryan Morshead

The [`git clone --reference`](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---reference-if-ableltrepositorygt) seems like a promising way to achieve caching when cloning. [This blog](https://randyfay.com/blogs/rfay) post discusses a methodology for doing so and [this repository](https://github.com/Seb35/git-cache) has a bash script...

The same issue reported by @lricardo took us several days to resolve due to the lack of docs. I'm sure others would benefit from this being shown in a couple...

We were explicitly passing `poolclass=QueuePool` to `create_async_engine` so an error there would have saved us a lot of time.

> Matching the way people write code This is less about how people write code and more about how people read it. The need for a tool like Black tells...

I think it's also worth noting that much of the discussion around this change happened before the new [stability policy](https://github.com/psf/black/issues/2394). The `--future` flag could be a great opportunity to introduce...

While many people do report this, it's hard to know where the majority opinion lies just by looking at the number of issues. The people who are satisfied with the...

Yes please! `nest-asyncio` can break a lot of other packages that aren't expecting it.

Started a potentially related discussion here: https://github.com/pydantic/pydantic/discussions/9237

By relying on [`pydantic._internal._core_utils.walk_core_schema`](https://github.com/pydantic/pydantic/issues/9320) I've managed to implement what's proposed in the original issue description. The general approach is to walk the schema generated by a model and wrap all...

@sydney-runkle, any news on this? I intend to move forward with the approach I described above early next week so any guidance you can give before then would be great.