Skip to content

Commit

Permalink
Add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Feb 21, 2016
1 parent 1c2ea67 commit e3ff361
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:

install:
- pip install --upgrade setuptools
- pip install --upgrade pip wheel
- pip install hiredis
- pip install pyflakes
- pip install pep8
Expand All @@ -19,6 +20,10 @@ script:
- pyflakes aiohttp_session tests
- pep8 aiohttp_session tests
- coverage run --source=aiohttp_session setup.py test
- python setup.py check -rm
- if python -c "import sys; sys.exit(sys.version_info < (3,5))"; then
python setup.py check -s;
fi

after_success:
- coveralls
Expand All @@ -32,3 +37,14 @@ env:
services:
- redis-server
sudo: false

deploy:
provider: pypi
user: andrew.svetlov
password:
secure: "HZ9GfwquRRfzvV8quu8dMdOEY7akGDiSl1yyrWoiqvr2pFq/Z/EQGQPNB7E0HpVYOvx4LqortOz41C/TxSuLRXSHzDWEK9ddXSxTrBtoLMEQKjGMe6AhAW+w/q6/rENb9LAQ0OZuLybtJuUYO0zoGByqyBUsyDflOnhMZ2EAwKg="
distributions: "sdist bdist_wheel"
on:
tags: true
all_branches: true
python: 3.5
2 changes: 1 addition & 1 deletion aiohttp_session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from aiohttp import web


__version__ = '0.4.0'
__version__ = '0.5.0'


class Session(MutableMapping):
Expand Down
4 changes: 4 additions & 0 deletions aiohttp_session/log.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import logging


log = logging.getLogger(__package__)

0 comments on commit e3ff361

Please sign in to comment.