Skip to content

Commit

Permalink
release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhky committed Jan 30, 2019
1 parent 243b012 commit a01e620
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ before_install:
install:
- conda create --yes -n shorttext-test python=$TRAVIS_PYTHON_VERSION
- source activate shorttext-test
- sudo apt-get install python-dev
- sudo apt-get install python3-dev
- pip install Cython
- pip install -U numpy
- pip install -U scipy
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ Characteristics:
- character-level sequence-to-sequence (seq2seq) learning; and
- spell correction.

## Documentation

Documentation and tutorials for `shorttext` can be found here: [http://shorttext.rtfd.io/](http://shorttext.rtfd.io/).

[FAQ](https://shorttext.readthedocs.io/en/latest/faq.html).

## Installation

To install it, in a console, use `pip`.
Expand Down Expand Up @@ -76,6 +82,7 @@ If you would like to contribute, feel free to submit the pull requests. You can

## News

* 01/29/2019: `shorttext` 1.0.6 released.
* 01/13/2019: `shorttext` 1.0.5 released.
* 10/03/2018: `shorttext` 1.0.4 released.
* 08/06/2018: `shorttext` 1.0.3 released.
Expand Down Expand Up @@ -114,10 +121,8 @@ If you would like to contribute, feel free to submit the pull requests. You can

## Possible Future Updates

- [x] Moving the testing word2vec model to AWS S3;
- [ ] More scalability;
- [ ] Including BERT models;
- [ ] Dividing components to other packages;
- [ ] Jupyter notebooks as tutorials;
- [ ] Compatibility with Python 3.7;
- [ ] More available corpus.
2 changes: 1 addition & 1 deletion apidocs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.5'
release = '1.0.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'1.0.5'
release = u'1.0.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Ans: This functionality is removed since release 0.5.11, due to the following re
* the results are incorrect.


**Q9. I am having trouble in install `shorttext` on Google Cloud Platform. What should I do?
**Q9. I am having trouble in install `shorttext` on Google Cloud Platform. What should I do?**

Ans: There is no "Python.h". Run: `sudo apt-get install python3-dev` in SSH shell of the VM instance.

Expand Down
8 changes: 8 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
News
====

* 01/29/2019: `shorttext` 1.0.6 released.
* 01/13/2019: `shorttext` 1.0.5 released.
* 10/03/2018: `shorttext` 1.0.4 released.
* 08/06/2018: `shorttext` 1.0.3 released.
Expand Down Expand Up @@ -41,6 +42,13 @@ News
What's New
----------

Release 1.0.6 (January 29, 2019)
--------------------------------

* Documentation change;
* Word-embedding model used in unit test stored in Amazon S3 bucket.


Release 1.0.5 (January 13, 2019)
--------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def readme():


setup(name='shorttext',
version="1.0.6a01",
version="1.0.6",
description="Short Text Mining",
long_description=readme(),
classifiers=[
Expand Down

0 comments on commit a01e620

Please sign in to comment.