From 9fdee7bf871dcc3996896e87c1ff0cdddca9abe1 Mon Sep 17 00:00:00 2001 From: voidlily Date: Fri, 15 Apr 2022 10:18:00 -0700 Subject: [PATCH] update boto3 for python 3.10 compatibility This was on an old version of boto3 which was not compatible with python 3.10 due to removal of deprecated `collections.abc` aliases, updating boto3 in requirements.txt fixed this issue > Remove deprecated aliases to Collections Abstract Base Classes from the collections module. (Contributed by Victor Stinner in bpo-37324.) --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8a92dda..48c2401 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -boto3~=1.9.246 +boto3~=1.21.41 kubernetes~=10.0.1 python-dotenv~=0.10.2 -urllib3<1.26 \ No newline at end of file +urllib3<1.26