From a840a906715ffeb89ea72a3e28c7a43de06fdc7b Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Tue, 8 Oct 2019 16:49:12 +1100 Subject: [PATCH] Add six to install_requires (#1245) dc2f2ad8 introduced a dependancy on six, and added it to requirements, but not to setup.py, add it. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 77ef8a07..d75a70e6 100755 --- a/setup.py +++ b/setup.py @@ -102,7 +102,8 @@ if __name__ == "__main__": install_requires=[ "deprecated", "pyjwt", - "requests>=2.14.0" + "requests>=2.14.0", + "six" ], extras_require={ "integrations": ["cryptography"]