From 857fc29fc287900d8ad3e5df8617c14a659faf1b Mon Sep 17 00:00:00 2001 From: Andrea Rosa Date: Thu, 12 Nov 2020 11:48:20 +0000 Subject: [PATCH] Fix dependency issue with python 3.6.0 A recent change introduce the use of the ContextVar package. That package is included from python 3.7.0 but not in older versions. This change adds that explicit dependency in case the version of python used is less than 3.7.0 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index c103380..eeaa138 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ iso8601==0.1.12 pytest==5.4.3 pytest-asyncio==0.12.0 httptools>=0.1.1 +contextvars==2.4;python_version<"3.7"