Skip to content

Commit

Permalink
updated README.me for a correct example; updated .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhky committed Feb 10, 2018
1 parent 7b5998b commit d15f364
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
sudo: false
dist: trusty
sudo: required
language: python
python:
- "2.7"
- "3.5"
before_install:
- wget 'http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh' -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda2/bin:$PATH
- conda update --yes conda
- sudo apt-get update
- sudo apt-get install libc6
install:
- conda create --yes -n shorttext-test python=$TRAVIS_PYTHON_VERSION pip numpy scipy
- source activate shorttext-test
- pip install unittest2
- pip install pytest
- pip install google-compute-engine
- pip install -U .
script:
- python setup.py test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ The second and the third elements in each tuple in the list `decompositions` are
>>> plt.plot(x2array, decompositions[0][1](x2array))
```

![alt](fig/mode1A.png)
![alt](fig/Figure_1A.png)

![alt](fig/mode1B.png)
![alt](fig/Figure_1B.png)

## Useful Links

Expand Down
Binary file added fig/Figure_1A.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fig/Figure_1B.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed fig/mode1A.png
Binary file not shown.
Binary file removed fig/mode1B.png
Binary file not shown.

0 comments on commit d15f364

Please sign in to comment.