Skip to content

Commit 158c6f4

Browse files
committed
bump traitlets version floor
1 parent 6c14f0d commit 158c6f4

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/jupyter-ai/pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ classifiers = [
2323
"Programming Language :: Python :: 3.12",
2424
]
2525
dependencies = [
26-
"jupyter_server>=2.4,<3", # v2.4 is the version floor required by jupyterlab~=4.0
26+
# jupyter_server>=2.4 is required in JL4
27+
"jupyter_server>=2.4,<3",
2728
"aiosqlite>=0.18",
2829
"importlib_metadata>=5.2.0",
2930
"pydantic~=2.0",
@@ -33,7 +34,8 @@ dependencies = [
3334
# v1.8.0.post0 should be excluded as it lacks macOS x86 wheels.
3435
"faiss-cpu>=1.8.0,<2.0.0,!=1.8.0.post0",
3536
"typing_extensions>=4.5.0",
36-
"traitlets>=5.0",
37+
# traitlets>=5.6 is required in JL4
38+
"traitlets>=5.6",
3739
"deepmerge>=2.0,<3",
3840
"jupyterlab-chat>=0.7.1,<1.0.0",
3941
]
@@ -45,7 +47,8 @@ core_default_tasks = "jupyter_ai:tasks"
4547

4648
[project.optional-dependencies]
4749
test = [
48-
"jupyter_server[test]>=2.4,<3", # v2.4 is the version floor required by jupyterlab~=4.0
50+
# jupyter_server>=2.4 is required in JL4
51+
"jupyter_server[test]>=2.4,<3",
4952
"coverage",
5053
"pytest",
5154
"pytest-asyncio",

0 commit comments

Comments
 (0)