From e446ee43919b0adfefd27ec04b2485a40bc77879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 4 Feb 2023 23:07:37 -0800 Subject: [PATCH] only require contextlib2 on Python < 3.3 contextlib.ExitStack was added in Python 3.3 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 22f593a..4c1eafd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -contextlib2>=0.5.5 +contextlib2>=0.5.5; python_version < "3.3"