Skip to content

Commit a93dff9

Browse files
pin packages (#34)
1 parent 5ed9d2b commit a93dff9

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

LICENSE

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2024, Datalayer
3+
Copyright (c) 2025, Datalayer
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without
@@ -26,12 +26,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2626
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2727
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2828
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30-
31-
---
32-
33-
This library reuse part of Jupyter Server code licensed under BSD 3-Clause License
34-
Source: https://github.com/jupyter-server/jupyter_server/blame/v2.12.0/jupyter_server/services/kernels/connection/base.py
35-
36-
This library reuse part of traitlets code licensed under BSD 3-Clause License
37-
Source: https://github.com/ipython/traitlets/blob/v5.14.3/traitlets/log.py
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ pip install -e .
5252
The Jupyter AI Agents can directly interact with JupyterLab. The modifications made by the Jupyter AI Agents can be seen in real-time thanks to [Jupyter Real Time Collaboration](https://jupyterlab.readthedocs.io/en/stable/user/rtc.html). Make sure you have JupyterLab installed with the Collaboration extension.
5353

5454
```bash
55-
pip install jupyterlab jupyter-collaboration ipykernel
55+
pip install jupyterlab==4.4.1 jupyter-collaboration==4.0.2 ipykernel
5656
```
5757

5858
We ask you to take additional actions to overcome limitations and bugs of the pycrdt library. Ensure you create a new shell after running the following commands.
5959

6060
```bash
6161
pip uninstall -y pycrdt datalayer_pycrdt
62-
pip install datalayer_pycrdt
62+
pip install datalayer_pycrdt==0.12.15
6363
```
6464

6565
## Use from the CLI

jupyter_ai_agents/__version__.py

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

55
"""Jupyter AI Agents."""
66

7-
__version__ = "0.9.0"
7+
__version__ = "0.9.1"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ dependencies = [
2727
"langchain-github-copilot>=0.4.0",
2828
"langchain-anthropic",
2929
"fastapi",
30-
"jupyter_kernel_client",
31-
"jupyter_nbmodel_client>=0.8.0",
30+
"jupyter_kernel_client==0.6.0",
31+
"jupyter_nbmodel_client==0.11.3",
3232
"pydantic-settings",
3333
"python-dotenv",
3434
"uvicorn",

0 commit comments

Comments
 (0)