Skip to content

Commit e166ed7

Browse files
pin packages (#5)
1 parent c61785a commit e166ed7

File tree

5 files changed

+7
-7
lines changed

5 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_earth_mcp_server/* jupyter_earth_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_earth_mcp_server.server"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SHELL=/bin/bash
88

99
.PHONY: clean build
1010

11-
VERSION = "0.0.2"
11+
VERSION = "0.0.3"
1212

1313
default: all ## Default target is all.
1414

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ The following demo uses the [Earthdata MCP server](https://github.com/datalayer/
3232
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).
3333

3434
```bash
35-
pip install jupyterlab jupyter-collaboration ipykernel
35+
pip install jupyterlab==4.4.1 jupyter-collaboration==4.0.2 ipykernel
3636
pip uninstall -y pycrdt datalayer_pycrdt
37-
pip install datalayer_pycrdt
37+
pip install datalayer_pycrdt==0.12.15
3838
```
3939

4040
Then, start JupyterLab with the following command.

jupyter_earth_mcp_server/__version__.py

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

44
"""Jupyter Earth MCP Server."""
55

6-
__version__ = "0.0.2"
6+
__version__ = "0.0.3"

pyproject.toml

Lines changed: 2 additions & 2 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

0 commit comments

Comments
 (0)