Skip to content

Commit

Permalink
Merge pull request #71 from AguaClara/0.0.8
Browse files Browse the repository at this point in the history
testing out travis deploy with stages
  • Loading branch information
eak24 authored May 11, 2018
2 parents 6784979 + 0c4d58e commit d66b58c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
27 changes: 19 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: python
sudo: false
python:
- '3.5'
- '3.6'
Expand All @@ -8,6 +9,24 @@ matrix:
fast_finish: true
script:
- pytest
stages:
- test
- deploy
jobs:
include:
- stage: deploy
python: 3.6
install: skip # no tests, no depedencies needed
script: skip # we're not running tests
deploy:
provider: pypi
user: aguaclara
password:
secure: g/pNzWYdJV1o7Xx5FqXD4brqm2fi5EGD3GpsaneGI+yoLGJ5uo2tCZHsfbVDE8lx9B749qMwgGCw7zBRaza4bxQDzNlgGyu/O0DKat77Bc2QrE5edH2FMk0l6hnhjEGuk9Wepiwe7Utt0Xzzvx+A+yWc0cQ39Yj6cJ7guNBGg14qxb02ezwh6+Xb9UT39Wol3Y816D/NFqv4hlmKG9ilRhkPamOziy4v0SWihWxLkVMNIEfNcyZgIuMMzoThktBoQZ4MvdCbJdyE/kcjq31tdqKjj1YYtrncxUG5UUITxBBN28vhJq8VYJPrm+tgx2f2FSqYn6J4jmb6Ug1ivQGVxbe8C5uqaphYYvtZYUz3RKqYHHrHp3O13wUvAuDVUeesOGS3iM5k07G02PJCx0SZ4kRH4tF5Nhs523Sd1YQLZDt7IuCMmxoagpx5+wbUVwY1rfO7eHHA14/y8smvlBP6c2SDH/ZPihPHGoFS2KheYLXnV8VxPRPH0vvJifFBvlO3KzmUXGE2NC/yTlPhhZgcyRmBfz3xUDD+cV8r+/eNjlbWLL2sl3CMDSlw2iMl7mzk2E7/TbUafilqKd3ZBCnT381jnhmi6Sxo+i+qABnAq7NI+dEWHlTG56wN+LWcsYhyaSh+on1CuXrh4MrjMixHA6U8pB2o3t6B67j8wv7h06Q=
on:
tags: true
branch: master
distributions: sdist
after_success:
- curl -Lo travis_after_all.py https://git.io/travis_after_all
- python travis_after_all.py
Expand All @@ -18,11 +37,3 @@ after_success:
python setup.py coverage && codecov
fi
fi
deploy:
provider: pypi
user: aguaclara
password:
secure: YxI4bY0vJu69uvXxkHgOx1WfBZbzBXAAzhflg5zWsGK32Y711KFIgGiAgtfux8777qmxD0N/m+88RoChRKMVCriYWSzzmPflyH2cOA2oUqaGXGtJMnBRA1X4rlfVw1ONnUOg09GqI/Bg1cusutB/heo3itS+XNAKsqgQ0hYuAvLkuk8skzFqa6XNCFLZ9E6XOteaek3G+AqTrrhWYipugw+1LTV6uakWXqt7XB80pOHB8KGSA/ZDFdMKl43+TzzWzcJjZWJkjVyEP2B4ax1KMliZ/1eY/Ltcf/vW0PMY/2B5xXsZvsQRonWNOfQt8WCVNjQnRGJB9WWiorbNfn75k9QHLCXQiOlgZ+6ZXURam5kyHkVuuBWVGp9JSav6RQwwIlKbbV3WqZx5LhDPhuiGOV10ENk/9TwUmnwf4KjtX9WjAmelVrjIxgjoLZt2Rm00YnfigtJ9aXuXdkA+CNI25OczoYZRkeZU8S5wCqf/jtIDRK/iWiBPtAYobAKBYpNXjjFA2KmTMEj1230OwTT9/4wTt9eVuj4MWNrLvs2gSTXjIzfrqe1mivOd7VQf/JV0Gm38ibbMhVmz/NU40y2/xVZnQG7oor9quJTL4c7q2VWvnG+5XX88RzGeaXTa7PSfTx9yQFbwor55Gvpl+aUAql863gqC/RgUPrxw2UNMtBE=
on:
branch: master
tags: true
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='aide_design',
version='0.0.7',
version='0.0.8',
description='AguaClara Infrastructure Design Engine',
url='https://github.com/AguaClara/aguaclara_design',
author='AguaClara at Cornell',
Expand Down

0 comments on commit d66b58c

Please sign in to comment.