From cf7835b7091f82e651c4172a9e4f87be729615be Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 4 Apr 2024 05:35:41 -0500 Subject: [PATCH 1/5] Set all min deps --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 30d9c9c4d1..5c39bc4e3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,24 +24,24 @@ classifiers = [ requires-python = ">=3.8" dependencies = [ "anyio>=3.1.0", - "argon2-cffi", - "jinja2", + "argon2-cffi>=21.1", + "jinja2>=2.11", "jupyter_client>=7.4.4", "jupyter_core>=4.12,!=5.0.*", - "jupyter_server_terminals", + "jupyter_server_terminals>=0.2", "nbconvert>=6.4.4", "nbformat>=5.3.0", - "packaging", - "prometheus_client", - "pywinpty;os_name=='nt'", + "packaging>=21.0", + "prometheus_client>=0.9", + "pywinpty>=2.1;os_name=='nt'", "pyzmq>=24", "Send2Trash>=1.8.2", "terminado>=0.8.3", "tornado>=6.2.0", "traitlets>=5.6.0", - "websocket-client", + "websocket-client>=1.3", "jupyter_events>=0.9.0", - "overrides" + "overrides>=5.0" ] [project.urls] From 7a6d8116b328bdd9aeed35f32308c3812fdb2794 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 4 Apr 2024 05:40:01 -0500 Subject: [PATCH 2/5] fix version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5c39bc4e3c..3b6fad9919 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ "nbformat>=5.3.0", "packaging>=21.0", "prometheus_client>=0.9", - "pywinpty>=2.1;os_name=='nt'", + "pywinpty>=2.0.1;os_name=='nt'", "pyzmq>=24", "Send2Trash>=1.8.2", "terminado>=0.8.3", From b8012134b4c5b21b99d100075cb661e39aefff10 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 4 Apr 2024 05:43:49 -0500 Subject: [PATCH 3/5] bump deps --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3b6fad9919..6bf091f544 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ dependencies = [ "jupyter_server_terminals>=0.2", "nbconvert>=6.4.4", "nbformat>=5.3.0", - "packaging>=21.0", + "packaging>=22.0", "prometheus_client>=0.9", "pywinpty>=2.0.1;os_name=='nt'", "pyzmq>=24", @@ -39,7 +39,7 @@ dependencies = [ "terminado>=0.8.3", "tornado>=6.2.0", "traitlets>=5.6.0", - "websocket-client>=1.3", + "websocket-client>=1.7", "jupyter_events>=0.9.0", "overrides>=5.0" ] From 0a6286aa7f43b32ada20998be77e3a477d1f6719 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 4 Apr 2024 06:40:26 -0500 Subject: [PATCH 4/5] bump terminals dep --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6bf091f544..00f03d3fe3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "jinja2>=2.11", "jupyter_client>=7.4.4", "jupyter_core>=4.12,!=5.0.*", - "jupyter_server_terminals>=0.2", + "jupyter_server_terminals>=0.4.4", "nbconvert>=6.4.4", "nbformat>=5.3.0", "packaging>=22.0", From 5d4670832a921664c0095d9a8e36087ead2dc112 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 4 Apr 2024 06:45:00 -0500 Subject: [PATCH 5/5] use jinja2 3+ --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 00f03d3fe3..42350ed474 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ requires-python = ">=3.8" dependencies = [ "anyio>=3.1.0", "argon2-cffi>=21.1", - "jinja2>=2.11", + "jinja2>=3.0.3", "jupyter_client>=7.4.4", "jupyter_core>=4.12,!=5.0.*", "jupyter_server_terminals>=0.4.4",