-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #113 from KrishnaswamyLab/python_magic2
Python magic2
- Loading branch information
Showing
99 changed files
with
12,210 additions
and
4,536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ python/*.so | |
python/*.dll | ||
python/*.egg-info | ||
python/magic/__pycache__ | ||
python/magic/*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r | ||
|
||
language: r | ||
sudo: required | ||
cache: packages | ||
|
||
os: | ||
- linux | ||
|
||
r: | ||
- oldrel | ||
- release | ||
- devel | ||
|
||
cache: packages | ||
|
||
env: | ||
global: | ||
- PATH="$HOME/miniconda2/bin:$HOME/miniconda3/bin:$PATH" | ||
- RETICULATE_PYTHON="$HOME/miniconda2/bin/python" | ||
|
||
before_install: | ||
- chmod +x travis_setup.sh | ||
- ./travis_setup.sh | ||
- $HOME/miniconda2/bin/pip install --user phate nose2 | ||
- $HOME/miniconda3/bin/pip install --user phate nose2 | ||
- R -e "install.packages(c('reticulate', 'devtools', 'readr', 'phateR', 'Matrix', 'ggplot2', 'viridis'))" | ||
|
||
install: | ||
- cd python | ||
- python2 setup.py install --user | ||
- python3 setup.py install --user | ||
- cd ../Rmagic | ||
- R CMD INSTALL . | ||
- cd .. | ||
|
||
script: | ||
- cd Rmagic | ||
- R CMD build . | ||
- travis_wait 30 R CMD check *tar.gz | ||
- cd ../python | ||
- python2 setup.py test | ||
- python3 setup.py test | ||
- cd .. | ||
|
||
warnings_are_errors: true |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.