Skip to content

Commit d0804ed

Browse files
author
Ram Idavalapati
authored
Merge pull request #20 from RamanjaneyuluIdavalapati/master
#19 upgraded numpy and numba version in setup.py
2 parents bbc87b3 + 700e7d9 commit d0804ed

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_long_description():
2222

2323
long_description = get_long_description()
2424

25-
version = '0.4'
25+
version = '0.4.1'
2626
setup(
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={

0 commit comments

Comments
 (0)