-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
37 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
language: python | ||
|
||
matrix: | ||
fast_finish: true | ||
include: | ||
- language: python | ||
os: linux | ||
env: | ||
- PYTHON_VERSION="3.6" | ||
- language: python | ||
os: linux | ||
env: | ||
- PYTHON_VERSION="3.7" | ||
|
||
install: | ||
- sudo apt-get update | ||
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh | ||
- bash miniconda.sh -b -p $HOME/miniconda | ||
- echo ". $HOME/miniconda/etc/profile.d/conda.sh" >> $HOME/.bashrc | ||
- source $HOME/.bashrc | ||
- hash -r | ||
- conda config --set always_yes yes --set changeps1 no | ||
- conda config --add channels conda-forge | ||
- conda update -q conda | ||
- conda info -a | ||
- conda create -n conda_env python=$PYTHON_VERSION | ||
- conda activate conda_env | ||
- conda install nose | ||
|
||
script: | ||
- conda activate conda_env | ||
- python setup.py install | ||
- nosetests -v -s . |
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
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
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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
[metadata] | ||
name = read-roi | ||
version = 1.4.3-dev | ||
long_description = file: README.md, | ||
|
||
[bdist_wheel] | ||
|
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
author_email='[email protected]', | ||
url='https://github.com/hadim/read-roi/', | ||
description='Read ROI files .zip or .roi generated with ImageJ.', | ||
long_description_content_type='text/markdown', | ||
packages=find_packages(), | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|