From cf75d69030a59b50bdfc02d332b864bffb353651 Mon Sep 17 00:00:00 2001 From: Hoseong Son Date: Tue, 19 Jan 2021 13:30:10 +0900 Subject: [PATCH 1/2] Lock pyjwt version to 1.6.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1beb545..35b49ed 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ install_requires = [ "djangorestframework>=3.7.7", "django>=2.2.1", - "PyJWT>=1.6.1", + "PyJWT==1.6.1", "requests>=2.20.0", "cryptography>=2.3", ] From 13404142091b7578e9e8651c4a227e60b08deb59 Mon Sep 17 00:00:00 2001 From: Hoseong Son Date: Tue, 19 Jan 2021 15:03:14 +0900 Subject: [PATCH 2/2] Set version to 1.0.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 35b49ed..97aaafd 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -version = '1.0.6' +version = '1.0.7' # When the project is installed by pip, this is the specification that is used to install its dependencies. install_requires = [