-
Notifications
You must be signed in to change notification settings - Fork 147
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 #83 from developmentseed/develop
version 0.7.0
- Loading branch information
Showing
27 changed files
with
1,406 additions
and
859 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 |
---|---|---|
@@ -1,30 +1,33 @@ | ||
language: python | ||
|
||
python: | ||
- '2.7' | ||
|
||
# Setup anaconda | ||
- '2.7' | ||
before_install: | ||
- sudo add-apt-repository -y ppa:ubuntugis/ppa | ||
- sudo apt-get update -qq | ||
- sudo apt-get install libgdal1h gdal-bin libgdal-dev libcurl4-gnutls-dev | ||
- 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/miniconda/bin:$PATH | ||
- conda update --yes conda | ||
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda | ||
- sudo rm -rf /dev/shm | ||
- sudo ln -s /run/shm /dev/shm | ||
|
||
# Install packages | ||
- sudo add-apt-repository -y ppa:ubuntugis/ppa | ||
- sudo apt-get update -qq | ||
- sudo apt-get install libgdal1h gdal-bin libgdal-dev libcurl4-gnutls-dev | ||
- 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/miniconda/bin:$PATH | ||
- conda update --yes conda | ||
- sudo rm -rf /dev/shm | ||
- sudo ln -s /run/shm /dev/shm | ||
install: | ||
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib scikit-image six nose dateutil | ||
- conda install --yes -c https://conda.binstar.org/osgeo gdal | ||
- pip install --install-option="--no-cython-compile" cython | ||
- pip uninstall requests --yes | ||
- pip install requests==2.5.3 | ||
- pip install -r requirements/travis.txt | ||
|
||
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib scikit-image | ||
six nose dateutil | ||
- conda install --yes -c https://conda.binstar.org/osgeo gdal | ||
- pip install --install-option="--no-cython-compile" cython | ||
- pip uninstall requests --yes | ||
- pip install requests==2.5.3 | ||
- pip install -r requirements/travis.txt | ||
script: | ||
- nosetests | ||
- nosetests | ||
deploy: | ||
provider: pypi | ||
user: devseed | ||
password: | ||
secure: WtawFW/999XYszmZfj1Qk82l00OSyP2JBVOOGCERrW1gVO7MYtYsgP31HKRSzNTCTHJNVDpdK4WZWY6zPQqC3l2UfWYYsvRn0hCoI8AJxE5VCUEg6Ccpe6fMJuhp1pq6Zy7yrfBSZcOB9aqSHLBJsunD2o3mNlTC8WV8vNK74ck= | ||
on: | ||
tags: true | ||
repo: developmentseed/landsat-util | ||
branch: master |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM ubuntu:14.10 | ||
RUN apt-get -y update | ||
RUN apt-get install --yes python-pip python-numpy python-scipy libgdal-dev libatlas-base-dev gfortran libfreetype6-dev libglib2.0-dev zlib1g-dev python-pycurl | ||
RUN pip install landsat-util |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.