fix: [setup] Fixed potential conflicts with libraries in python 3.10 install

pull/572/head
chrisr3d 2022-05-24 17:05:21 +02:00
parent b4f90761c3
commit 3b58915c41
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ setup(
install_requires=[
'tornado',
'psutil',
'redis>=3'
'redis>=3',
'pyparsing==2.4.7'
],
)