From 7a0ffd145af16bb3d53fe2865852669d8e83f8e5 Mon Sep 17 00:00:00 2001 From: ZymptomLabs <17466655+zymptomLabs@users.noreply.github.com> Date: Fri, 18 Jun 2021 22:35:10 -0600 Subject: [PATCH] prevent using a python2.7 incompatible update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6ffc152..c6e13a9 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ packages=find_packages(exclude=('tests*',)), namespace_packages=('intuitlib',), install_requires=[ - 'python_jose>=2.0.2', + 'python_jose==3.2.0', 'future>=0.16.0', 'requests>=2.13.0', 'requests_oauthlib>=1.0.0',