Skip to content

Commit

Permalink
Bumpversion 0.6.3-alpha -> 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Sep 15, 2013
1 parent 0c50a8b commit 300a88c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.6.3 (unreleased)
0.6.3 (2013-09-15)
------------------
.. module:: text.taggers

Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ TextBlob is actively developed on Github_.

You can clone the public repo: ::

git clone https://github.com/sloria/TextBlob.git
$ git clone https://github.com/sloria/TextBlob.git

Or download one of the following:

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.3-alpha'
__version__ = '0.6.3'
__license__ = 'MIT'
__author__ = "Steven Loria"

Expand Down
3 changes: 2 additions & 1 deletion text/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
.. versionadded:: 0.6.0
'''
from .en import parse as pattern_parse
from __future__ import absolute_import
from text.en import parse as pattern_parse

class BaseParser(object):

Expand Down
2 changes: 1 addition & 1 deletion text/taggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def split_sents(corpus):
return tokens

def train(self, sentences, save_loc=None, nr_iter=5):
'''Train a model from sentences, and save it at save_loc. nr_iter
'''Train a model from sentences, and save it at ``save_loc``. ``nr_iter``
controls the number of Perceptron training iterations.
:param sentences: A list of (words, tags) tuples.
Expand Down

0 comments on commit 300a88c

Please sign in to comment.