From d1fb6014239ff2cfab486e5a54801b259fa52b58 Mon Sep 17 00:00:00 2001 From: ddelange <14880945+ddelange@users.noreply.github.com> Date: Sun, 21 Aug 2022 20:05:05 +0300 Subject: [PATCH] Replace smart_open VCS requirement ref https://github.com/RaRe-Technologies/smart_open/pull/702#issuecomment-1221539854 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f422ed6..e2fcc3c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ REQUIREMENTS_TEST = open(os.path.join(HERE, "requirements_test.txt")).readlines() REQUIREMENTS = [ - "smart_open[s3,http]@git+https://github.com/ddelange/smart_open@patch-1", + "smart_open[s3,http]", "boto3>=1.7.0", # beaker needs this "cryptography", @@ -37,11 +37,11 @@ "redis": ["redis"], "gcs": [ "google-cloud-storage>=1.10.0", - "smart_open[gcs]@git+https://github.com/ddelange/smart_open@patch-1", + "smart_open[gcs]", ], "azure-blob": [ "azure-storage-blob>=12.5.0", - "smart_open[azure]@git+https://github.com/ddelange/smart_open@patch-1", + "smart_open[azure]>=6.1.0", # ref #304 ], }