From d404dc6beeb1324dcb424c165d2121cf4361533b Mon Sep 17 00:00:00 2001 From: Mohamed ElKalioby Date: Fri, 28 Aug 2020 19:12:14 +0300 Subject: [PATCH] Updated to settings --- CHANGELOG.md | 8 ++++++++ README.md | 1 + requirements.txt | 19 +++++++++---------- setup.py | 13 ++++--------- 4 files changed, 22 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce8c6da..9e74e91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 2.0 (work in progress) + * Dropped support to djangp-1.8 and Python 2.7 + * Added: never-cache decorator + * Addresses several structure and style issues with TOTP and Email dialogs + * Updated to fido2 0.8.1 + +Thanks to @swainn + ## v1.9.1 * Fixed: is_authenticated #13 * Fixed: is_anonymous #6 diff --git a/README.md b/README.md index 3d99eed..b5b564a 100644 --- a/README.md +++ b/README.md @@ -156,3 +156,4 @@ function some_func() { # Contributors * [mahmoodnasr](https://github.com/mahmoodnasr) * [d3cline](https://github.com/d3cline) +* [swainn](https://github.com/swainn) diff --git a/requirements.txt b/requirements.txt index 3322acb..d15a917 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,10 @@ django >= 1.7 - jsonfield - simplejson - pyotp - python-u2flib-server - ua-parser - user-agents - python-jose - fido2 == 0.7 - jsonLookup - +jsonfield +simplejson +pyotp +python-u2flib-server +ua-parser +user-agents +python-jose +fido2 == 0.8.1 +jsonLookup diff --git a/setup.py b/setup.py index e02503f..0addb77 100644 --- a/setup.py +++ b/setup.py @@ -24,32 +24,27 @@ setup( 'ua-parser', 'user-agents', 'python-jose', - 'fido2 == 0.7.2', + 'fido2 == 0.8.1', 'jsonLookup' ], - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", + python_requires=">2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", include_package_data=True, zip_safe=False, # because we're including static files classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", - "Framework :: Django :: 1.7", - "Framework :: Django :: 1.8", - "Framework :: Django :: 1.9", - "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries :: Python Modules", ] )