From 4cfac160af3520078a3d8384c883b992d4ad1c8b Mon Sep 17 00:00:00 2001 From: BlindMuadDib Date: Mon, 27 Jan 2025 12:26:09 -0500 Subject: [PATCH] removed 'python_version < 3.9' since 3.9 not current, new python versions include importlib_resources --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2fb26d8..3128c5b 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ 'paramiko>=2.10.1', 'boto3~=1.17.78', 'tqdm~=4.60.0', - 'importlib_resources; python_version < "3.9"' + 'importlib_resources' ], extras_require={ 'emr': ['pyspark[sql]>=3.1.1,<3.2'],