From 77e785ca24a60e56a15add3f4c9d5bd194d48fb2 Mon Sep 17 00:00:00 2001 From: Besir Kurtulmus Date: Thu, 21 May 2020 11:22:38 -0700 Subject: [PATCH 1/3] Fix enum version to prevent it from using older versions --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d2fb8d5..f586880 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ install_requires=[ 'requests', 'six', - 'enum34', + 'enum34==1.1.10', 'algorithmia-api-client==1.1.0' ], include_package_data=True, From f1c5f14c9f2bfa04c796185f4e39c22eaac87294 Mon Sep 17 00:00:00 2001 From: Besir Kurtulmus Date: Thu, 21 May 2020 11:28:34 -0700 Subject: [PATCH 2/3] Only install for Date: Thu, 21 May 2020 11:50:16 -0700 Subject: [PATCH 3/3] Bump minor version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df9f68d..48e8299 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='algorithmia', - version='1.3.0', + version='1.3.1', description='Algorithmia Python Client', long_description='Algorithmia Python Client is a client library for accessing Algorithmia from python code. This library also gets bundled with any Python algorithms in Algorithmia.', url='http://github.com/algorithmiaio/algorithmia-python',