Update to awscli so Python 3 works

Closes #23
This commit is contained in:
Peter Bull 2016-05-21 16:51:34 -04:00
parent 7d8086ea87
commit 03a96219ea
2 changed files with 4 additions and 4 deletions

View File

@ -23,10 +23,10 @@ lint:
flake8 --exclude=lib/,bin/ . flake8 --exclude=lib/,bin/ .
sync_data_to_s3: sync_data_to_s3:
s3cmd sync --recursive data/ s3://$(BUCKET)/data/ aws s3 sync --recursive data/ s3://$(BUCKET)/data/
sync_data_from_s3: sync_data_from_s3:
s3cmd sync --recursive s3://$(BUCKET)/data/ data/ aws s3 sync --recursive s3://$(BUCKET)/data/ data/
################################################################################# #################################################################################
# PROJECT RULES # # PROJECT RULES #

View File

@ -1,6 +1,6 @@
click click
Sphinx Sphinx
coverage coverage
s3cmd==1.6.0 awscli
flake8 flake8
python-dotenv==0.5.0 python-dotenv>=0.5.0