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
Starting with sqlalchemy version 1.4.0, RowProxy and ResultProxy are handled differently (changelog), giving me the following error when I generate the appservice registration within mautrix_telegram:
$ python -m mautrix_telegram -g -c config.yaml
Traceback (most recent call last):
File "/usr/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/user/mautrix-telegram/lib/python3.7/site-packages/mautrix_telegram/__main__.py", line 22, in <module>
from mautrix.util.db import Base
File "/home/user/mautrix-telegram/lib/python3.7/site-packages/mautrix/util/db/__init__.py", line 1, in <module>
from .base import Base, BaseClass
File "/home/user/mautrix-telegram/lib/python3.7/site-packages/mautrix/util/db/base.py", line 11, in <module>
from sqlalchemy.engine.result import RowProxy, ResultProxy
ImportError: cannot import name 'RowProxy' from 'sqlalchemy.engine.result' (/home/user/mautrix-telegram/lib/python3.7/site-packages/sqlalchemy/engine/result.py)
The text was updated successfully, but these errors were encountered:
wknds
changed the title
RowProxy
RowProxy and ResultProxy in sqlalchemy
Mar 21, 2021
Starting with sqlalchemy version 1.4.0, RowProxy and ResultProxy are handled differently (changelog), giving me the following error when I generate the appservice registration within mautrix_telegram:
The text was updated successfully, but these errors were encountered: