From ae13a244ef0e7059c325533b4cd8fb8c0af5b274 Mon Sep 17 00:00:00 2001 From: Ilan Biala Date: Tue, 27 Jun 2017 10:07:16 -0700 Subject: [PATCH] Constrain PyJWT dependency to working versions --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d015561de6..eb64c78d04 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ # # You need to have the setuptools module installed. Try reading the setuptools # documentation: http://pypi.python.org/pypi/setuptools -REQUIRES = ["requests >= 2.0.0", "six", "pytz", "PyJWT >= 1.4.2"] +REQUIRES = ["requests >= 2.0.0", "six", "pytz", "PyJWT >= 1.4.2,<1.5.1"] if sys.version_info < (3, 0): REQUIRES.extend(["cryptography >= 1.3.4", "idna >= 2.0.0", "pyOpenSSL >= 0.14"])