Skip to content

Commit 7181e08

Browse files
committed
Try to fix tranvis build
1 parent a2c7896 commit 7181e08

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,13 @@ matrix:
1313
- python: nightly
1414

1515
install:
16-
# - pip install --upgrade setuptools
17-
- pip install wheel
16+
- pip install -U setuptools twine pip wheel
1817
- pip install -r requirements-dev.txt
19-
- pip install codecov
18+
- pip install -U codecov
2019

2120
script:
2221
- make cov
23-
- python setup.py check -rm
24-
- if python -c "import sys; sys.exit(sys.version_info < (3,5))"; then
25-
python setup.py check -s;
26-
fi
22+
- python setup.py check -rms
2723

2824
after_success:
2925
- codecov
@@ -39,4 +35,4 @@ deploy:
3935
on:
4036
tags: true
4137
all_branches: true
42-
python: 3.5
38+
python: 3.6

aiohttp_session/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from aiohttp import web
99

1010

11-
__version__ = '2.5.0'
11+
__version__ = '2.5.1'
1212

1313

1414
class Session(MutableMapping):

0 commit comments

Comments
 (0)