From 73f1324e4681b9e7121967c443a8ca802eca7287 Mon Sep 17 00:00:00 2001 From: Tim Weber Date: Tue, 7 Feb 2023 11:17:49 +0000 Subject: [PATCH] Replace >== in EXTRAS_REQUIRE with >= More recent versions of pip (or setuptools?) will refuse to accept these, leading to the error message: 'extras_require' must be a dictionary whose values are strings or lists of strings containing valid project/version requirement specifiers --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8cbc967..1388be2 100644 --- a/setup.py +++ b/setup.py @@ -11,8 +11,8 @@ "python-magic>=0.4.15", ] EXTRAS_REQUIRE = { - "amazon": ["boto3>=1.8.00", "boto3-stubs[s3]>==1.12.41.0"], - "digitalocean": ["boto3>=1.8.00", "boto3-stubs[s3]>==1.12.41.0"], + "amazon": ["boto3>=1.8.00", "boto3-stubs[s3]>=1.12.41.0"], + "digitalocean": ["boto3>=1.8.00", "boto3-stubs[s3]>=1.12.41.0"], "google": ["google-cloud-storage>=1.18.0", "requests>=2.19.1"], "local": [ "filelock>=3.0.0",