Skip to content

Commit

Permalink
Bump pycrdt-websocket>=0.14.0,<0.15.0 (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart authored Jul 24, 2024
1 parent cfa057e commit 1d602b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyter_collaboration/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
from jupyter_server.base.handlers import APIHandler, JupyterHandler
from jupyter_server.utils import ensure_async
from jupyter_ydoc import ydocs as YDOCS
from pycrdt import YMessageType, write_var_uint
from pycrdt_websocket.websocket_server import YRoom
from pycrdt_websocket.ystore import BaseYStore
from pycrdt_websocket.yutils import YMessageType, write_var_uint
from tornado import web
from tornado.websocket import WebSocketHandler

Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ classifiers = [
dependencies = [
"jupyter_server>=2.0.0,<3.0.0",
"jupyter_ydoc>=2.0.0,<3.0.0",
"pycrdt-websocket>=0.13.4,<0.14.0",
"pycrdt",
"pycrdt-websocket>=0.14.0,<0.15.0",
"jupyter_events>=0.10.0",
"jupyter_server_fileid>=0.7.0,<1",
"jsonschema>=4.18.0"
Expand Down Expand Up @@ -143,6 +144,8 @@ filterwarnings = [
"ignore:can't resolve package from __spec__ or __package__, falling back on __name__ and __path__:ImportWarning",
# see https://github.com/dateutil/dateutil/issues/1314
"ignore:.*datetime.utcfromtimestamp\\(\\) is deprecated.*:DeprecationWarning:",
# From anyio https://github.com/agronholm/anyio/pull/715
'ignore:Unclosed <MemoryObjectSendStream>:ResourceWarning',
]

[tool.mypy]
Expand Down

0 comments on commit 1d602b1

Please sign in to comment.