From 0063487024b7abc467ba448fa7e3f8a259f282ad Mon Sep 17 00:00:00 2001 From: Heath123 Date: Thu, 6 Jan 2022 16:59:17 +0000 Subject: [PATCH] Fix on Python 3.10 (update cffi) --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 07b89f3..f3b7c8b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ certifi==2020.4.5.1 -cffi==1.14.0 +cffi==1.15.0 chardet==3.0.4 cryptography==2.9 decorator==4.4.2 diff --git a/setup.py b/setup.py index 40e441b..03545aa 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ ], install_requires=[ 'certifi==2020.4.5.1', - 'cffi==1.14.0', + 'cffi==1.15.0', 'chardet==3.0.4', 'cryptography==2.9', 'decorator==4.4.2',