Skip to content

Commit

Permalink
wip convirt boto to boto3
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-bye committed Dec 1, 2017
1 parent c7c91cd commit 5a43971
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
boto==2.36.0
boto3==1.4.8
coverage==3.7.1
gevent==1.0.1
mock==1.3.0
Expand Down
4 changes: 2 additions & 2 deletions s3po/backends/s3.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'''Deal with S3.'''


from boto.s3.connection import S3Connection
from boto.exception import S3ResponseError, BotoServerError, BotoClientError
from boto3.s3.connection import S3Connection
from boto3.exception import S3ResponseError, BotoServerError, BotoClientError
from cStringIO import StringIO

from ..util import CountFile, retry, logger
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
license='MIT',
platforms='Posix; MacOS X',
install_requires=[
'boto',
'boto3',
'coverage',
'gevent',
'mock',
Expand Down
2 changes: 1 addition & 1 deletion test/test_backends/test_s3.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'''Talk to S3'''

from cStringIO import StringIO
from boto.exception import S3ResponseError
from boto3.exception import S3ResponseError

import mock
from collections import namedtuple
Expand Down

0 comments on commit 5a43971

Please sign in to comment.