Victor Buryak

Results 2 issues of Victor Buryak

TypeError while trying to initialize Gino db with MySQL **To Reproduce** ```python from gino_starlette import Gino DATABASE_URL = f"mysql+aiomysql://{DATABASE_USER}:{DATABASE_PASSWORD}@{DATABASE_HOST}:{DATABASE_PORT}/{DATABASE_NAME}" db = Gino( dsn=DATABASE_URL, echo=True ) ``` **Actual result** ``` Cannot...

bug

Gino 1.1b2 doesn't work on Python 3.10.2 and aiomysql **To Reproduce** ```python from gino_starlette import Gino DATABASE_URL = f"mysql+aiomysql://{DATABASE_USER}:{DATABASE_PASSWORD}@{DATABASE_HOST}:{DATABASE_PORT}/{DATABASE_NAME}" db = Gino( dsn=DATABASE_URL, echo=True ) ``` **Actual result** ``` TypeError:...

bug