From e4cff3746ddb49f7b8fc604f0ac736c2e52cef95 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Wed, 13 Apr 2022 12:48:01 +0200 Subject: [PATCH] Explicitly install old wrapt on Python 3.4 Something is broken in pip so it installs a wrapt that doesn't support Python 3.4. Work around this by manually request a version that is known to work. --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index 0c0c541..855b986 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -4,3 +4,4 @@ jwcrypto six redis simplejson +wrapt<=1.12.1;python_version<="3.4"