diff --git a/.travis.yml b/.travis.yml index 8f2260fb..b5ee5309 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,17 +13,13 @@ matrix: - python: nightly install: -# - pip install --upgrade setuptools -- pip install wheel +- pip install -U setuptools twine pip wheel - pip install -r requirements-dev.txt -- pip install codecov +- pip install -U codecov script: - make cov -- python setup.py check -rm -- if python -c "import sys; sys.exit(sys.version_info < (3,5))"; then - python setup.py check -s; - fi +- python setup.py check -rms after_success: - codecov @@ -39,4 +35,4 @@ deploy: on: tags: true all_branches: true - python: 3.5 + python: 3.6 diff --git a/aiohttp_session/__init__.py b/aiohttp_session/__init__.py index 8c9650ab..c868fff8 100644 --- a/aiohttp_session/__init__.py +++ b/aiohttp_session/__init__.py @@ -8,7 +8,7 @@ from aiohttp import web -__version__ = '2.5.0' +__version__ = '2.5.1' class Session(MutableMapping):