diff --git a/jupyter_server_ydoc/handlers.py b/jupyter_server_ydoc/handlers.py index 5bf0aa45..185139ab 100644 --- a/jupyter_server_ydoc/handlers.py +++ b/jupyter_server_ydoc/handlers.py @@ -92,7 +92,7 @@ def get_room(self, path: str) -> YRoom: p = Path(file_path) updates_file_path = str(p.parent / f".{file_type}:{p.name}.y") ystore = self.ystore_class( - path=updates_file_path, metadata_callback=metadata_callback + path=updates_file_path, metadata_callback=metadata_callback, log=self.log ) self.rooms[path] = DocumentRoom(file_type, ystore, self.log) else: diff --git a/pyproject.toml b/pyproject.toml index 25910f87..a7ec4b6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ requires-python = ">=3.7" dependencies = [ "jupyter_ydoc>=0.2.0,<0.4.0", - "ypy-websocket>=0.6.0,<0.7.0", + "ypy-websocket>=0.7.1,<0.8.0", "jupyter_server_fileid >=0.6.0,<1" ]