Skip to content

Commit

Permalink
Bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 20, 2015
1 parent 13510b9 commit 8d3987d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python
python:
- 3.3
- 3.4
- 3.5

install:
- pip install --upgrade setuptools
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changes
=======

0.3.0 (2015-11-20)
------------------

- Reflect aiohttp changes: minimum required Python version is 3.4.1

- Use explicit 'aiohttp_session' package

0.2.0 (2015-09-07)
------------------

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import codecs
from setuptools import setup, find_packages
from setuptools import setup
import os
import re

Expand All @@ -15,7 +15,7 @@
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()

install_requires = ['aiohttp>=0.14']
install_requires = ['aiohttp>=0.18']
tests_require = install_requires + ['nose']
extras_require = {
'aioredis': ['aioredis>=0.1.4'],
Expand All @@ -33,14 +33,14 @@ def read(f):
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP'],
author='Andrew Svetlov',
author_email='andrew.svetlov@gmail.com',
url='https://github.com/aio-libs/aiohttp_session/',
license='Apache 2',
packages=find_packages(),
packages=['aiohttp_session'],
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
Expand Down

0 comments on commit 8d3987d

Please sign in to comment.