<Guest60>
just curious: has anyone attempted to produce an arbitrary tower of meta-tracing interpreters using rpython, à la the 3-lisp of https://dspace.mit.edu/handle/1721.1/15961 ?
Guest60 has quit [Quit: Client closed]
<Dejan>
Is there someone on this channel who managed to use psycopg2 with latest PyPy?
<hexology>
Dejan: what are you looking to test? just `pip install psycopg2`?
<hexology>
i get a c99 compilation error with `pip install psycopg2` but that might just be not having the right settings for psycopg2 and not pypy specifically
<Dejan>
hexology, ultimately i would like to run one of my projects that heavily uses psycopg2 on PyPy
<Dejan>
but I can't pip install it
<Dejan>
i found the psycopg2cffi project, but that one is quite old
<hexology>
maybe psycopg 3.x has better support?
<Dejan>
idk, never used that one
<Dejan>
does SQLAlchemy support it?
<hexology>
yes
<hexology>
it's a big improvement over 2, it uses the binary protocol and supports both async and traditional sync interfaces
<hexology>
i was able to `pip install 'psycopg >= 3.0'` without any problem just now