From bb220940339d8331f50bde5b3429968ee8e9eb89 Mon Sep 17 00:00:00 2001 From: Lenno Nagel Date: Thu, 17 May 2018 17:10:04 +0300 Subject: [PATCH] Fix requirements conflicts with cryptography --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 183a5fa..bc6145f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ Django>=1.8 djangorestframework>=3.2,<4.0 PyJWT>=1.4.0,<2.0.0 -cryptography>=1.4,<2.0 +cryptography>=2.0,<3.0 diff --git a/setup.py b/setup.py index cc995f5..96231c3 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_install_requires(): setup( name='djangorestframework-sso', - version='0.0.9', + version='0.0.10', packages=find_packages(exclude=['tests']), include_package_data=True, license='MIT License',