From 73889914fb57d0ec2f992bc2dc2191acff8b7250 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Fri, 13 Sep 2013 20:06:15 -0500 Subject: [PATCH] Bumpversion 0.6.2 -> 0.6.3-alpha --- docs/conf.py | 2 +- text/__init__.py | 2 +- text/taggers.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4a99187c..e5fdd950 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # built documents. # # The short X.Y version. -version = release = '0.6.2' +version = release = text.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/text/__init__.py b/text/__init__.py index e923d1c5..83ace7ee 100644 --- a/text/__init__.py +++ b/text/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.6.2' +__version__ = '0.6.3-alpha' __license__ = 'MIT' __author__ = "Steven Loria" diff --git a/text/taggers.py b/text/taggers.py index ef98738c..f2fa0e65 100644 --- a/text/taggers.py +++ b/text/taggers.py @@ -179,7 +179,8 @@ def _normalize(self, word): def _get_features(self, i, word, context, prev, prev2): '''Map tokens into a feature representation, implemented as a {hashable: float} dict. If the features change, a new model must be - trained.''' + trained. + ''' def add(name, *args): features[' '.join((name,) + tuple(args))] += 1