jupyterhub 5

require 5.1.0 for security fixes
This commit is contained in:
Min RK
2024-08-23 09:52:11 +02:00
parent c49fada1c8
commit 65c5d78ea5
2 changed files with 2 additions and 2 deletions

View File

@@ -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():