You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯ pip install asyncmy==0.2.5
Looking in indexes: https://pypi.org/simple, <redacted>
Collecting asyncmy==0.2.5
Using cached asyncmy-0.2.5-cp310-cp310-macosx_13_0_arm64.whl
Installing collected packages: asyncmy
Successfully installed asyncmy-0.2.5
[notice] A new release of pip available: 22.3.1 -> 23.0
[notice] To update, run: pip install --upgrade pip
❯ python3
Python 3.10.3 (main, Mar 27 2022, 13:44:57) [Clang 13.1.6 (clang-1316.0.21.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import asyncmy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/logi.ragnarsson/asyncmy-test/.venv/lib/python3.10/site-packages/asyncmy/__init__.py", line 1, in <module>
from .connection import Connection, connect # noqa:F401
ModuleNotFoundError: No module named 'asyncmy.connection'
If I install cython and then run pyximport.install() it works, but now we're building the library at startup which is much too slow. Also, using 0.2.7rc6 works immediately.
The text was updated successfully, but these errors were encountered:
I don't know if this being on macos and M1 is important, but it seems like it might be.
This minimal test fails consistantly:
If I install
cython
and then runpyximport.install()
it works, but now we're building the library at startup which is much too slow. Also, using0.2.7rc6
works immediately.The text was updated successfully, but these errors were encountered: