From 087ea69de15d59d56577434b1cf1d8cac3cc48eb Mon Sep 17 00:00:00 2001 From: Mohamed ElKalioby Date: Wed, 19 Jun 2019 14:04:57 +0300 Subject: [PATCH] Adding __version__ --- mfa/__init__.py | 11 +---------- setup.py | 2 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/mfa/__init__.py b/mfa/__init__.py index ebeeb9a..9e383a9 100644 --- a/mfa/__init__.py +++ b/mfa/__init__.py @@ -1,10 +1 @@ -# @property -# def urls(): -# import django -# if django.VERSION < (1, 9): -# from .mfa_urls import url_patterns -# return url_patterns, 'mfa', '' -# else: -# from .mfa_urls import url_patterns -# return url_patterns,'mfa' -# +__version__="1.4.1" \ No newline at end of file diff --git a/setup.py b/setup.py index fdf0631..8369cdd 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages, setup setup( name='django-mfa2', - version='1.4.0', + version='1.4.1', description='Allows user to add 2FA to their accounts', long_description=open("README.md").read(), long_description_content_type="text/markdown",