diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 3993684..613f089 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -65,7 +65,7 @@ jobs: - name: "Int. tests: Ubuntu 20.04, Py 3.8" distro_image: "ubuntu:20.04" extra_flags: "" - - name: "Int. tests: Ubuntu 22.04 (Py 3.10)" + - name: "Int. tests: Ubuntu 22.04 Py 3.10" distro_image: "ubuntu:22.04" extra_flags: "" - name: "Int. tests: Ubuntu 22.04, Py 3.10, --upgrade" diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py index 2895e0b..912c10f 100644 --- a/bootstrap/bootstrap.py +++ b/bootstrap/bootstrap.py @@ -206,7 +206,7 @@ def ensure_host_system_can_install_tljh(): # Require Ubuntu 20.04+ or Debian 10+ distro = get_os_release_variable("ID") - version = float(get_os_release_variable("VERSION_ID")) + version = get_os_release_variable("VERSION_ID") if distro not in ["ubuntu", "debian"]: print("The Littlest JupyterHub currently supports Ubuntu or Debian Linux only") sys.exit(1)