[Python-modules-commits] [python-django-otp] 01/09: Import python-django-otp_0.3.14.orig.tar.gz
Michael Fladischer
fladi at moszumanska.debian.org
Tue Jun 20 08:15:43 UTC 2017
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository python-django-otp.
commit 3f17e7d34fdb8f8327e4858255ee7580bd86a337
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date: Tue Jun 20 10:10:23 2017 +0200
Import python-django-otp_0.3.14.orig.tar.gz
---
CHANGES | 6 ++++++
PKG-INFO | 3 ++-
django_otp.egg-info/PKG-INFO | 3 ++-
django_otp/plugins/otp_static/management/commands/addstatictoken.py | 2 +-
docs/source/conf.py | 2 +-
setup.py | 3 ++-
6 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/CHANGES b/CHANGES
index 00bdbde..1ba8f96 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+v0.3.14 - May 30, 2017 - addstatictoken fix
+-------------------------------------------
+
+- Update addstatictoken command for current Django versions.
+
+
v0.3.13 - April 11, 2017 - Pickle compatibility
-----------------------------------------------
diff --git a/PKG-INFO b/PKG-INFO
index 4f350ca..263d3e9 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: django-otp
-Version: 0.3.13
+Version: 0.3.14
Summary: A pluggable framework for adding two-factor authentication to Django using one-time passwords.
Home-page: https://bitbucket.org/psagers/django-otp
Author: Peter Sagerson
@@ -43,5 +43,6 @@ Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff --git a/django_otp.egg-info/PKG-INFO b/django_otp.egg-info/PKG-INFO
index 4f350ca..263d3e9 100644
--- a/django_otp.egg-info/PKG-INFO
+++ b/django_otp.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: django-otp
-Version: 0.3.13
+Version: 0.3.14
Summary: A pluggable framework for adding two-factor authentication to Django using one-time passwords.
Home-page: https://bitbucket.org/psagers/django-otp
Author: Peter Sagerson
@@ -43,5 +43,6 @@ Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff --git a/django_otp/plugins/otp_static/management/commands/addstatictoken.py b/django_otp/plugins/otp_static/management/commands/addstatictoken.py
index 546d27c..01de42d 100644
--- a/django_otp/plugins/otp_static/management/commands/addstatictoken.py
+++ b/django_otp/plugins/otp_static/management/commands/addstatictoken.py
@@ -9,7 +9,7 @@ from django_otp.plugins.otp_static.lib import get_user_model, add_static_token
class Command(BaseCommand):
- option_list = BaseCommand.option_list + (
+ option_list = getattr(BaseCommand, 'option_list', ()) + (
make_option('-t', '--token', dest='token', help='The token to add. If omitted, one will be randomly generated.'),
)
args = '<username>'
diff --git a/docs/source/conf.py b/docs/source/conf.py
index b7504d0..0358063 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -75,7 +75,7 @@ copyright = u'2012, Peter Sagerson'
# The short X.Y version.
version = '0.3'
# The full version, including alpha/beta/rc tags.
-release = '0.3.13'
+release = '0.3.14'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/setup.py b/setup.py
index 9f949c2..09c7abe 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
setup(
name='django-otp',
- version='0.3.13',
+ version='0.3.14',
description='A pluggable framework for adding two-factor authentication to Django using one-time passwords.',
long_description=open('README.rst').read(),
author='Peter Sagerson',
@@ -32,6 +32,7 @@ setup(
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
+ "Programming Language :: Python :: 3.6",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
],
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-otp.git
More information about the Python-modules-commits
mailing list