File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ deploy:
2424 - wordvecspace/command.py
2525 - wordvecspace/convert.py
2626 - wordvecspace/cuda.py
27- name : wordvecspace-0.4
28- tag_name : wordvecspace- 0.4
27+ name : wordvecspace-0.4.1
28+ tag_name : 0.4.1
2929 on :
3030 repo : deep-compute/wordvecspace
3131 # pypitest
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ A high performance pure python module that helps in loading and performing opera
66> Prerequisites: Python2.7
77
88``` bash
9- sudo apt install libopenblas-base
10- sudo pip install wordvecspace
9+ $ sudo apt install libopenblas-base
10+ $ sudo pip install wordvecspace
1111```
1212
1313## Usage
@@ -258,6 +258,9 @@ $ python setup.py test
258258## GPU acceleration
259259
260260` wordvecspace ` can take advantage of an Nvidia GPU to perform some operations significantly faster. This is as simple as doing
261+ ``` bash
262+ $ pip install wordvecspace[cuda]
263+ ```
261264
262265``` python
263266>> > from wordvecspace.cuda import WordVecSpace
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def get_long_description():
2222
2323long_description = get_long_description ()
2424
25- version = '0.4'
25+ version = '0.4.1 '
2626setup (
2727 name = "wordvecspace" ,
2828 version = version ,
@@ -41,7 +41,7 @@ def get_long_description():
4141 install_requires = [
4242 'numpy==1.13.1' ,
4343 'pandas==0.20.3' ,
44- 'numba==0.34.0 ' ,
44+ 'numba==0.36.2 ' ,
4545 'basescript'
4646 ],
4747 extras_require = {
You can’t perform that action at this time.
0 commit comments