From 3b58915c41fdea25b2f012d18c4231fcada3e350 Mon Sep 17 00:00:00 2001 From: chrisr3d Date: Tue, 24 May 2022 17:05:21 +0200 Subject: [PATCH] fix: [setup] Fixed potential conflicts with libraries in python 3.10 install --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55ed8b7..ea55174 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ setup( install_requires=[ 'tornado', 'psutil', - 'redis>=3' + 'redis>=3', + 'pyparsing==2.4.7' ], )