Skip to content

Commit

Permalink
Adding Travis support for automated builds on PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Aug 27, 2014
1 parent edb4477 commit 3354795
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
language: python
python:
- 2.7
- 2.6
- 2.7
install:
- pip install coveralls
- pip install coveralls
script:
- nosetests --cover-package=publish --with-doctest --with-coverage --exclude=vendor
- pip install git+git://github.com/abstractfactory/publish.git
- nosetests --cover-package=publish --with-doctest --with-coverage --exclude=vendor
- pip install git+git://github.com/abstractfactory/publish.git
after_success:
- coveralls
- coveralls
deploy:
provider: pypi
user: mottosso
password: OA0LmiLkryLgxGebvs7uwv/rExnL4KnCeiMBK9P42qgKwE9aLQY3Y+iB94gy0Q/ziPGm8zASAHeCUIwmbmRleQEvAXdoDIFdl59vRBkocDKc2Ya3Nqw9zwBm5ExDZeuj23JcWl18rH8XNd7HTyRaOZisZ4aZfG/2k++ylvOCZYU=
on:
tags: true
2 changes: 1 addition & 1 deletion publish/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_PATCH = 5
VERSION_PATCH = 6

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down

0 comments on commit 3354795

Please sign in to comment.