summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2022-04-13 12:48:01 +0200
committerPierre Ossman <ossman@cendio.se>2022-04-13 12:50:25 +0200
commite4cff3746ddb49f7b8fc604f0ac736c2e52cef95 (patch)
tree8706999312e2827d3e34b8b6fe78497021add574
parentd5e8d709d748f4e1da4d695cd36476206182af33 (diff)
downloadwebsockify-e4cff3746ddb49f7b8fc604f0ac736c2e52cef95.tar.gz
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.
-rw-r--r--test-requirements.txt1
1 files changed, 1 insertions, 0 deletions
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"