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
I hope you are doing great. Thank you for implementing this library.
Are you planning to support python3.12 and python3.13? Currently poetry can't install on these python versions.
Here you can find the installation error:
- Installing edit-distance (1.0.6): Failed DBusErrorResponse [org.freedesktop.DBus.Error.UnknownMethod] ('No such interface “org.freedesktop.DBus.Properties” on object at path /org/freedesktop/secrets/collection/_40_fe_f0_25_c8U',) at .venv/lib/python3.12/site-packages/secretstorage/util.py:48 in send_and_get_reply 44│ def send_and_get_reply(self, msg: Message) -> Any: 45│ try: 46│ resp_msg: Message = self._connection.send_and_get_reply(msg) 47│ if resp_msg.header.message_type == MessageType.error: → 48│ raise DBusErrorResponse(resp_msg) 49│ return resp_msg.body 50│ except DBusErrorResponse as resp: 51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT): 52│ raise ItemNotFoundException('Item does not exist!') from respThe following error occurred when trying to handle this error: ItemNotFoundException Item does not exist! at .venv/lib/python3.12/site-packages/secretstorage/util.py:52 in send_and_get_reply 48│ raise DBusErrorResponse(resp_msg) 49│ return resp_msg.body 50│ except DBusErrorResponse as resp: 51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT): → 52│ raise ItemNotFoundException('Item does not exist!') from resp 53│ elif resp.name in (DBUS_SERVICE_UNKNOWN, DBUS_EXEC_FAILED, 54│ DBUS_NO_REPLY): 55│ data = resp.data 56│ if isinstance(data, tuple):Cannot install edit-distance.
Kind regards,
Abdullah
The text was updated successfully, but these errors were encountered:
Hello,
I hope you are doing great. Thank you for implementing this library.
Are you planning to support
python3.12
andpython3.13
? Currentlypoetry
can't install on these python versions.Here you can find the installation error:
Kind regards,
Abdullah
The text was updated successfully, but these errors were encountered: