Skip to content

Commit

Permalink
Bumpversion 0.6.2 -> 0.6.3-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Sep 14, 2013
1 parent 05e5be0 commit 7388991
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion text/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = '0.6.2'
__version__ = '0.6.3-alpha'
__license__ = 'MIT'
__author__ = "Steven Loria"

Expand Down
3 changes: 2 additions & 1 deletion text/taggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7388991

Please sign in to comment.