duplicity-team team mailing list archive
-
duplicity-team team
-
Mailing list archive
-
Message #01739
[Merge] lp:~verb/duplicity/boto-min-version into lp:duplicity
Lee Verberne has proposed merging lp:~verb/duplicity/boto-min-version into lp:duplicity.
Requested reviews:
duplicity-team (duplicity-team)
For more details, see:
https://code.launchpad.net/~verb/duplicity/boto-min-version/+merge/182014
This updates documentation and error messages to match the current actual version requirements of boto backend.
--
https://code.launchpad.net/~verb/duplicity/boto-min-version/+merge/182014
Your team duplicity-team is requested to review the proposed merge of lp:~verb/duplicity/boto-min-version into lp:duplicity.
=== modified file 'README'
--- README 2012-10-15 17:25:38 +0000
+++ README 2013-08-25 23:54:25 +0000
@@ -25,7 +25,7 @@
* for scp/sftp -- python-paramiko and python-pycryptopp
* for normal ftp -- NcFTP version 3.1.9 or later, but not 3.2.0
* for ftp over SSL -- lftp version 3.7.15 or later
- * Boto 1.6a or later for single-processing S3 access (default)
+ * Boto 2.0 or later for single-processing S3 or GCS access (default)
* Boto 2.1.1 or later for multi-processing S3 access
* Python v2.6 or later for multi-processing S3 access
=== modified file 'duplicity/backends/_boto_multi.py'
--- duplicity/backends/_boto_multi.py 2013-01-25 13:35:33 +0000
+++ duplicity/backends/_boto_multi.py 2013-08-25 23:54:25 +0000
@@ -36,7 +36,7 @@
from duplicity.filechunkio import FileChunkIO
from duplicity import progress
-BOTO_MIN_VERSION = "1.6a"
+BOTO_MIN_VERSION = "2.1.1"
# Multiprocessing is not supported on *BSD
if sys.platform not in ('darwin', 'linux2'):
=== modified file 'duplicity/backends/_boto_single.py'
--- duplicity/backends/_boto_single.py 2013-07-19 22:38:23 +0000
+++ duplicity/backends/_boto_single.py 2013-08-25 23:54:25 +0000
@@ -29,7 +29,7 @@
from duplicity.backend import retry
from duplicity import progress
-BOTO_MIN_VERSION = "1.6a"
+BOTO_MIN_VERSION = "2.0"
class BotoBackend(duplicity.backend.Backend):
Follow ups