Skip to content

Commit ff6b37b

Browse files
Ft/packages (#16)
* docker amd * pin packages version * bump * pin pyrdt
1 parent efb8c47 commit ff6b37b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ COPY jupyter_mcp_server/* jupyter_mcp_server/
1414
RUN pip install -e .
1515

1616
RUN pip uninstall -y pycrdt datalayer_pycrdt
17-
RUN pip install datalayer_pycrdt
17+
RUN pip install datalayer_pycrdt==0.12.15
1818

1919
CMD ["python", "-m", "jupyter_mcp_server.server"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Jupyter MCP Server is a [Model Context Protocol](https://modelcontextprotocol.io
2323
Make sure you have the following installed. The collaboration package is needed as the modifications made on the notebook can be seen thanks to [Jupyter Real Time Collaboration](https://jupyterlab.readthedocs.io/en/stable/user/rtc.html).
2424

2525
```bash
26-
pip install jupyterlab jupyter-collaboration ipykernel
26+
pip install jupyterlab==4.4.1 jupyter-collaboration==4.0.2 ipykernel
2727
pip uninstall -y pycrdt datalayer_pycrdt
28-
pip install datalayer_pycrdt
28+
pip install datalayer_pycrdt==0.12.15
2929
```
3030

3131
Then, start JupyterLab with the following command.

jupyter_mcp_server/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
"""Jupyter MCP Server."""
66

7-
__version__ = "0.3.3"
7+
__version__ = "0.3.4"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ classifiers = [
2121
"Programming Language :: Python :: 3",
2222
]
2323
dependencies = [
24-
"jupyter-kernel-client>=0.6.0",
25-
"jupyter-nbmodel-client>=0.11.1",
24+
"jupyter-kernel-client==0.6.0",
25+
"jupyter-nbmodel-client==0.11.3",
2626
"mcp[cli]>=1.2.1",
2727
]
2828

@@ -92,4 +92,4 @@ ignore = [
9292

9393
[tool.ruff.lint.per-file-ignores]
9494
# S101 Use of `assert` detected
95-
"jupyter_mcp_server/tests/*" = ["S101"]
95+
"jupyter_mcp_server/tests/*" = ["S101"]

0 commit comments

Comments
 (0)