Debian release 1.3.1-1

This commit is contained in:
Eric Evans 2016-05-21 21:06:46 -05:00
parent 4137b972e4
commit 4500f6a7d5
3 changed files with 35 additions and 15 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
python-boto3 (1.3.1-1) unstable; urgency=medium
* New upstream release.
-- Eric Evans <eevans@debian.org> Sat, 21 May 2016 21:05:31 -0500
python-boto3 (1.2.2-2) unstable; urgency=low python-boto3 (1.2.2-2) unstable; urgency=low
* Initial release (Closes: #798503) * Initial release (Closes: #798503)

2
debian/control vendored
View file

@ -9,7 +9,7 @@ Build-Depends:
python-setuptools, python-setuptools,
python3-all, python3-all,
python3-setuptools python3-setuptools
Standards-Version: 3.9.6 Standards-Version: 3.9.8
Homepage: https://github.com/boto/boto3 Homepage: https://github.com/boto/boto3
Vcs-Git: git://anonscm.debian.org/users/eevans/python-boto3.git Vcs-Git: git://anonscm.debian.org/users/eevans/python-boto3.git
Vcs-Browser: https://anonscm.debian.org/gitweb/?p=users/eevans/python-boto3.git;a=summary Vcs-Browser: https://anonscm.debian.org/gitweb/?p=users/eevans/python-boto3.git;a=summary

View file

@ -12,10 +12,10 @@ to do the same, here.
tests/unit/s3/test_transfer.py | 2 +- tests/unit/s3/test_transfer.py | 2 +-
3 files changed, 3 insertions(+), 4 deletions(-) 3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/boto3/s3/transfer.py b/boto3/s3/transfer.py Index: python-boto3/boto3/s3/transfer.py
index 6ec5ad9..a78e758 100644 ===================================================================
--- a/boto3/s3/transfer.py --- python-boto3.orig/boto3/s3/transfer.py
+++ b/boto3/s3/transfer.py +++ python-boto3/boto3/s3/transfer.py
@@ -135,8 +135,7 @@ import boto3 @@ -135,8 +135,7 @@ import boto3
from concurrent import futures from concurrent import futures
@ -26,10 +26,10 @@ index 6ec5ad9..a78e758 100644
from botocore.exceptions import IncompleteReadError from botocore.exceptions import IncompleteReadError
import boto3.compat import boto3.compat
diff --git a/tests/functional/test_dynamodb.py b/tests/functional/test_dynamodb.py Index: python-boto3/tests/functional/test_dynamodb.py
index 64c6b9c..49fabf6 100644 ===================================================================
--- a/tests/functional/test_dynamodb.py --- python-boto3.orig/tests/functional/test_dynamodb.py
+++ b/tests/functional/test_dynamodb.py +++ python-boto3/tests/functional/test_dynamodb.py
@@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
import json import json
from tests import unittest, mock from tests import unittest, mock
@ -39,14 +39,28 @@ index 64c6b9c..49fabf6 100644
from boto3.session import Session from boto3.session import Session
from boto3.dynamodb.conditions import Attr from boto3.dynamodb.conditions import Attr
diff --git a/tests/unit/s3/test_transfer.py b/tests/unit/s3/test_transfer.py Index: python-boto3/boto3/compat.py
index fb778fd..16f453e 100644 ===================================================================
--- a/tests/unit/s3/test_transfer.py --- python-boto3.orig/boto3/compat.py
+++ b/tests/unit/s3/test_transfer.py +++ python-boto3/boto3/compat.py
@@ -18,7 +18,7 @@ from tests import unittest @@ -14,8 +14,7 @@ import sys
from contextlib import closing import os
import errno
import socket
-
-from botocore.vendored import six
+import six
if six.PY3:
# In python3, socket.error is OSError, which is too general
Index: python-boto3/tests/unit/s3/test_transfer.py
===================================================================
--- python-boto3.orig/tests/unit/s3/test_transfer.py
+++ python-boto3/tests/unit/s3/test_transfer.py
@@ -20,7 +20,7 @@ from contextlib import closing
import mock import mock
from botocore.stub import Stubber
from botocore.session import Session
-from botocore.vendored import six -from botocore.vendored import six
+import six +import six
from concurrent import futures from concurrent import futures