From a6d2c2329186fb362742935ed603f00f8723cb32 Mon Sep 17 00:00:00 2001 From: Andy Freeland Date: Fri, 24 Jun 2022 09:40:13 -0700 Subject: [PATCH] Remove the enum-compat dependency This patch removes the `enum-compat` dependency and replaces it with a conditional dependency on `enum34`. This is all the `enum-compat` package does. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6ffc152..20350b5 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ 'requests>=2.13.0', 'requests_oauthlib>=1.0.0', 'six>=1.10.0', - 'enum-compat', + 'enum34; python_version < "3.4"', ], license='Apache 2.0', keywords='intuit quickbooks oauth auth openid client'