From 65c5d78ea57327c53bb18d84a5e7a54b4a6ef226 Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 23 Aug 2024 09:52:11 +0200 Subject: [PATCH] jupyterhub 5 require 5.1.0 for security fixes --- integration-tests/test_hub.py | 2 +- tljh/requirements-hub-env.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/test_hub.py b/integration-tests/test_hub.py index 92815663..939175d3 100644 --- a/integration-tests/test_hub.py +++ b/integration-tests/test_hub.py @@ -33,7 +33,7 @@ def test_hub_version(): r = requests.get(HUB_URL + "/hub/api") r.raise_for_status() info = r.json() - assert V("4") <= V(info["version"]) <= V("5") + assert V("5.1") <= V(info["version"]) <= V("6") async def test_user_code_execute(): diff --git a/tljh/requirements-hub-env.txt b/tljh/requirements-hub-env.txt index 62f39f4b..c3b1887e 100644 --- a/tljh/requirements-hub-env.txt +++ b/tljh/requirements-hub-env.txt @@ -8,7 +8,7 @@ # If a dependency is bumped to a new major version, we should make a major # version release of tljh. # -jupyterhub>=4.0.2,<5 +jupyterhub>=5.1.0,<6 jupyterhub-systemdspawner>=1.0.1,<2 jupyterhub-firstuseauthenticator>=1.0.0,<2 jupyterhub-nativeauthenticator>=1.2.0,<2