-
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.
circleci doesn't support multiple python versions
- Loading branch information
Scisco
committed
Mar 25, 2016
1 parent
e857fda
commit 93c126d
Showing
2 changed files
with
44 additions
and
26 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,44 @@ | ||
language: python | ||
sudo: false | ||
|
||
python: | ||
- '2.7' | ||
- '3.4' | ||
- '3.5' | ||
|
||
cache: | ||
directories: | ||
- ~/.cache/pip | ||
|
||
|
||
env: | ||
global: | ||
- secure: QsF7ignSAbH/WCyO6v9bw1exmCWDQR0DqmHkwJ5swc9N44OOOzbWGsaMSYB5y9h+d70fz4arbxQDhsk2KvX4Zd1/2YIMOrIsbgDYeegpkhVPgyQNPKmVqiX+Tb47t1C/TgkC7A07tiPpuefYcLNMZ8gzz7oKhh1UKapYftqzZ+g= | ||
- secure: HxjeKWSROBQYy9NuNkgQeaK1ubTF8vH5FcR8nUTSAYxxw/qOzKpqkiq4BcJSRcIwTbkvaBf4MshLGVOxPjMeyJFe06UD/6LvTUGS3bwdya+m0RFjHe5/3wzS8/MxLbTlvgzmuGLLKOsJjXCi9eQQchKfHv+QuhGxhYVLQpnbU9E= | ||
- secure: Zq0Z2UA2A7/ieXX8XoMweClJTp8hiVBxoQ1ylJYNd7qsRSk0QvZhn62db5/x48L9S1kELk0sG64q5Pf96/RPLpdjkBUAdEkS7qF+QOvRvAv2woNEHutjlMUvP6jwYGbug+AORg76btZ57OwMOi3aTkagQMMKnokfo7KGbffy0Jo= | ||
- PIP_WHEEL_DIR=$HOME/.cache/pip/wheels | ||
- PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels | ||
|
||
before_install: | ||
- pip install -U pip | ||
- pip install wheel | ||
|
||
|
||
install: | ||
- pip wheel -r requirements-dev.txt | ||
- pip install -r requirements-dev.txt | ||
- pip install -e . | ||
|
||
|
||
script: | ||
- python setup.py test | ||
|
||
deploy: | ||
provider: pypi | ||
user: devseed | ||
password: | ||
secure: WtawFW/999XYszmZfj1Qk82l00OSyP2JBVOOGCERrW1gVO7MYtYsgP31HKRSzNTCTHJNVDpdK4WZWY6zPQqC3l2UfWYYsvRn0hCoI8AJxE5VCUEg6Ccpe6fMJuhp1pq6Zy7yrfBSZcOB9aqSHLBJsunD2o3mNlTC8WV8vNK74ck= | ||
on: | ||
repo: developmentseed/landsat-util | ||
branch: | ||
- master |
This file was deleted.
Oops, something went wrong.