From 841628eb2ac8c35502c8dde15bde40cbd2a15305 Mon Sep 17 00:00:00 2001 From: GeorgianaElena Date: Wed, 24 Feb 2021 17:48:27 +0200 Subject: [PATCH] Pin chardet again and pin it for tests also. We still need to pin chardet because the aiohttp latest version still has a requirement of chardet<4. Let's wait until a new aiohttp release before removing our version pins --- dev-requirements.txt | 1 + tljh/installer.py | 1 + 2 files changed, 2 insertions(+) diff --git a/dev-requirements.txt b/dev-requirements.txt index 0c50f19..9902b41 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -2,3 +2,4 @@ pytest pytest-cov pytest-mock codecov +chardet==3.0.4 diff --git a/tljh/installer.py b/tljh/installer.py index cd8da55..f3cc989 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -231,6 +231,7 @@ def ensure_jupyterhub_package(prefix): "jupyterhub-tmpauthenticator==0.6", "oauthenticator==0.10.0", "jupyterhub-idle-culler==1.0", + "chardet==3.0.4", ], ) traefik.ensure_traefik_binary(prefix)