Skip to content

Commit

Permalink
bump up allowed versions (#147)
Browse files Browse the repository at this point in the history
* bump up allowed versions
  • Loading branch information
thehesiod committed Mar 23, 2017
1 parent 81010e2 commit ce1edba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Changes
-------
0.2.3 (XXXX-XX-XX)
0.2.3 (2017-03-22)
^^^^^^^^^^^^^^^^^^
* update botocore requirement to: botocore>=1.5.0, <1.5.29

0.2.2 (2017-03-07)
^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion aiobotocore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .session import get_session, AioSession

__all__ = ['get_session', 'AioSession']
__version__ = '0.2.3a0'
__version__ = '0.2.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages


install_requires = ['botocore==1.5.0', 'aiohttp>=1.2.0, <2.0.0']
install_requires = ['botocore>=1.5.0, <1.5.29', 'aiohttp>=1.2.0, <2.0.0']

PY_VER = sys.version_info

Expand Down

0 comments on commit ce1edba

Please sign in to comment.