update: jupyterhub 4

This commit is contained in:
Erik Sundell
2023-04-24 01:55:34 +02:00
committed by Erik Sundell
parent 7431151ed3
commit b3365fbe45
3 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ def test_hub_version():
r = requests.get(hub_url + "/hub/api")
r.raise_for_status()
info = r.json()
assert V("3.0") <= V(info["version"]) <= V("4.0")
assert V("4") <= V(info["version"]) <= V("5")
@pytest.mark.asyncio