FIX: Version number update 0.7.0

This commit is contained in:
Chris Lee
2015-06-09 18:35:55 -04:00
parent 5c78d5c9e9
commit 610577fc70
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -22,4 +22,4 @@ v0.5.0, Friday Feb 27 -- Updated to support private cloud, allows for indicorc f
v0.5.1, Friday Feb 27 -- More README updates, fixed rst formatting issue, added classifiers
v0.5.2, Tue March 7 -- Required API keys, configuration settings
v0.5.3, Wed Apr 15 -- Added scipy to requirements, edited Readme to not break pypi page
v0.6.0, Thu May 29 -- Remove numpy / scipy dependency in favor of Pillow
v0.6.0, Thu May 29 -- Remove numpy / scipy dependency in favor of Pillow
+2 -2
View File
@@ -15,7 +15,7 @@ pip install indicoio
From source:
```bash
git clone https://github.com/IndicoDataSolutions/IndicoIo-python.git
git clone https://github.com/IndicoDataSolutions/IndicoIo-python.git
python setup.py install
```
@@ -62,7 +62,7 @@ Examples
>>> text_tags(test_text, top_n=1) # return only keys with top_n values
{u'startups_and_entrepreneurship': 0.21888586688354486}
>>> import numpy as np
>>> import numpy as np
>>> test_face = np.linspace(0,50,48*48).reshape(48,48).tolist()
+2 -2
View File
@@ -4,10 +4,10 @@ JSON_HEADERS = {
'Content-type': 'application/json',
'Accept': 'application/json',
'client-lib': 'python',
'version-number': '0.6.0'
'version-number': '0.7.0'
}
Version, version, __version__, VERSION = ('0.6.0',) * 4
Version, version, __version__, VERSION = ('0.7.0',) * 4
from indicoio.text.sentiment import political, posneg
from indicoio.text.sentiment import posneg as sentiment
+1 -1
View File
@@ -8,7 +8,7 @@ except ImportError:
setup(
name="IndicoIo",
version='0.6.0',
version='0.7.0',
packages=[
"indicoio",
"indicoio.text",