Skip to content

Commit

Permalink
Bump to 0.2.1, add travis autodeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Mar 24, 2016
1 parent c647e06 commit 92fb7c3
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
21 changes: 20 additions & 1 deletion .travis.yml
Expand Up @@ -15,7 +15,26 @@ install:
- pip install -r requirements-dev.txt

script:
- python setup.py check -rms
- tox


cache: apt
cache:
- apt
- directories:
- $HOME/.cache/pip


before_cache:
- rm -f $HOME/.cache/pip/log/debug.log

deploy:
provider: pypi
user: andrew.svetlov
password:
secure: vm7/iwk1LNrhDPiQ3LnFNxgUgovwIZZkkB85YMoMLfQVautxR0PRf3Xd/h2rAwZ6kaT74rD6GFn5PyvVDDvGQB/utEnXh/MjhjG4mVQuqcXfF6mlWRqz0chIhQ2chS1MUL2R5PXpY4vI+Jvk6uaBz7Prl9pRYzIbEgHvac32/wxdvCXxPQ7pVsmwa+A6UhaZ52hoOdlN5ALNfkcpxC/iRu1Pvesk90oDUc422FizdC1z5zEyLq+2Y1ewGS2+JldkI05ohmAN1/n8mkHWbbeJhCdBaO7t2Z4aNLDf8O4ewEwAy6M4Fe9DkQag60EqxOpufXF0Pm7TbCU1JQSBPZEGflGQf+Wv1hknZ/mxsc1BOA0OhY1zHsEFPUj1NDE5jWrzzWqlL9zX50mkPVJKlXnqYcx7GPXScXgXbd1xyYKpxnlfIxS3iCllPFi12YUQHphlHYAtx9m7+D0QPS6jzbT/xYBWtEnm+gvGquXNhJ16UxnqqOEmze6ZJJhMQVz4MUqK+jgQai5T3iaBBNppUY0UwwX4YnSHB4hedINJjVBHPGMwedSIHFYQKO3kiBknfPUEI++MxflbWl2IhE+wS1C00vI4ZJctOGcHbXdANx+60aXDxV1jA/ZgOX1ErNtTADbcDT7R9nLaQcTsDyg+w0XuAtwUtUj6n+/AAdebh4bO2tk=
distributions: "sdist bdist_wheel"
on:
tags: true
all_branches: true
python: 3.5
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,11 @@
Changes
=======

0.2.1 (2016-03-24)
------------------

- Fix `python setup.py test` command #4

0.2.0 (2015-09-20)
------------------

Expand Down
2 changes: 1 addition & 1 deletion janus/__init__.py
Expand Up @@ -8,7 +8,7 @@
from queue import Empty as SyncQueueEmpty
from queue import Full as SyncQueueFull

__version__ = '0.2.0'
__version__ = '0.2.1'

log = logging.getLogger(__package__)

Expand Down
2 changes: 2 additions & 0 deletions requirements-dev.txt
Expand Up @@ -7,3 +7,5 @@ pytest
pytest-cov
mypy-lang
tox
wheel
docutils

0 comments on commit 92fb7c3

Please sign in to comment.