M. Greyson Christoforo

Results 89 comments of M. Greyson Christoforo

In the specific example, everything is planar, so I find it a bit strange that a non-planar face code path is being followed here. Maybe the issue is with detecting...

Hi @dvarrazzo thanks for the thoughtful reply! I've just done this: ```python import psycopg from psycopg.adapt import Loader, Dumper import ast class Circle(object): def __init__(self, center: tuple[float, float], radius: float):...

Thanks for the suggestions. That plan sounds good. I'm still not sure why the box case works actually though. From the docs, Box supports the following syntaxes: ``` ( (...

Using dataclasses is a much better idea than the manual class I had. Here's what I've got now for the full set of native geometric types, everything seems to work...

Seems like somewhere there should be logic to recognize that a file in the repo is a git-lfs pointer (and not a real file), then go inspect `.lfsconfig` to know...

@bartkamphorst Where does the code live that handles `--bare` repo access? I suppose it makes the most sense to add lfs-awareness to that.

I'll give that a try. Thank you!

I have the same problem today. I was expecting `pip install wxpython` to work. This comment matches my exact experience: https://github.com/wxWidgets/Phoenix/issues/2225#issuecomment-1209538326

I guess building the 4.2.0 release is broken under modern linuxes because of the attrdict module import. Deleting https://github.com/wxWidgets/Phoenix/blob/b567d1e6e3aff88f900d5ec4fb148531746b211d/buildtools/config.py#L30 seems to solve the problem for me and it looks like...