update boto

pull/91/head
eric 2018-06-08 13:55:05 -04:00
parent 8aae6808d1
commit ca5e5bed0c
3 changed files with 7 additions and 5 deletions

View File

@ -9,8 +9,9 @@ PyYAML==3.11
amqp==1.4.9
anyjson==0.3.3
billiard==3.3.0.23
awscli==1.10.26
boto==2.42.0
awscli==1.15.33
boto==2.48.0
boto3==1.7.33
celery==3.1.23
certifi==2018.4.16
chardet==3.0.4
@ -34,7 +35,7 @@ git+git://github.com/eshellman/django-notification.git@a4620e893e2da220994e0189b
django-registration==2.1.2
django-selectable==0.9.0
django-smtp-ssl==1.0
django-storages==1.4.1
django-storages==1.5.2
django-tastypie==0.13.3
#django-transmeta==0.7.3
git+git://github.com/resulto/django-transmeta.git@ad4d7278ba330dcf8c8446f8ae9b2c769ae8684e

View File

@ -488,7 +488,7 @@ except ImportError:
LOCAL_TEST = True
if AWS_SECRET_ACCESS_KEY:
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
else:
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'

View File

@ -62,5 +62,6 @@ SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = ''
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = ''
GOOGLE_BOOKS_API_KEY = ''
TEST_INTEGRATION = False
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
LOCAL_TEST = True
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'