Skip to content

Commit 7388991

Browse files
committed
Bumpversion 0.6.2 -> 0.6.3-alpha
1 parent 05e5be0 commit 7388991

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = release = '0.6.2'
53+
version = release = text.__version__
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = '0.6.2'
3+
__version__ = '0.6.3-alpha'
44
__license__ = 'MIT'
55
__author__ = "Steven Loria"
66

text/taggers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ def _normalize(self, word):
179179
def _get_features(self, i, word, context, prev, prev2):
180180
'''Map tokens into a feature representation, implemented as a
181181
{hashable: float} dict. If the features change, a new model must be
182-
trained.'''
182+
trained.
183+
'''
183184
def add(name, *args):
184185
features[' '.join((name,) + tuple(args))] += 1
185186

0 commit comments

Comments
 (0)