From 9a0a126f43c7cd796333beb0d4e3f322cd535b22 Mon Sep 17 00:00:00 2001 From: Jerry Seutter Date: Mon, 26 Dec 2016 22:32:57 -0600 Subject: [PATCH] Releases via Travis --- .travis.yml | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 89b142f..282ae7d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,24 @@ language: python - python: - - "2.7" - - "3.4" - - "3.5" - - "3.6" - +- '2.7' +- '3.4' +- '3.5' +- '3.6' install: - - if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install BeautifulSoup six nose coverage python-coveralls; fi - - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install BeautifulSoup4 six nose coverage python-coveralls; fi - +- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install BeautifulSoup six nose coverage + python-coveralls; fi +- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install BeautifulSoup4 six nose + coverage python-coveralls; fi script: - - nosetests - +- nosetests after_success: - - coveralls +- coveralls +deploy: + provider: pypi + user: jseutter + password: + secure: buE5iS5WhggpFcqR7iIEfcnDNHGeZ4zcYlgy3p9mJKEP8s7NMVeYJc+0FnnNs2fOEVR1QUX/URFtAZegtW9Bi/hVSc2bECZxM75uH342vqtea2rNJ7wQLSugUO+w9Q7HvC2KqeVl3s5Qa4Y3+mwv3Ej4tPI/WfASaNZG3XkwX4c= + on: + tags: true + distributions: sdist bdist_wheel + repo: jseutter/ofxparse