8000 Clean up imports and spacing, bump to 3.6.10 · madCode/twilio-python@133c1df · GitHub
[go: up one dir, main page]

Skip to content

Commit 133c1df

Browse files
committed
Clean up imports and spacing, bump to 3.6.10
1 parent 1d6bc83 commit 133c1df

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
Version 3.6.10
7+
--------------
8+
9+
Released November 13, 2014
10+
11+
- Add support for DELETE to Call and Message records
12+
- Add support for redacting Message body fields
13+
14+
Version 3.6.9
15+
-------------
16+
17+
Released October 30, 2014
18+
19+
- Add Python 3.4 support
20+
- Add wheel packaging
21+
- Fix compatibility with earlier Python 2 releases
22+
623
Version 3.6.8
724
-------------
825

tests/test_calls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from datetime import date
22
from mock import patch, Mock
3-
from nose.tools import raises, assert_true
3+
from nose.tools import assert_true
44
from twilio.rest.resources import Calls, Call
55
from tools import create_mock_json
66

tests/test_messages.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from datetime import date
22
import unittest
33

4-
from mock import Mock, patch
4+
from mock import patch
55
from six import u
66

77
from twilio.rest.resources import Messages
@@ -52,7 +52,7 @@ def test_create(self):
5252
'body': u('ahoy hoy'),
5353
},
5454
)
55-
55+
5656
def test_delete(self):
5757
with patch.object(self.resource, 'delete_instance') as mock:
5858
self.resource.delete('MM123')

twilio/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ('3', '6', '9')
1+
__version_info__ = ('3', '6', '10')
22
__version__ = '.'.join(__version_info__)

0 commit comments

Comments
 (0)
0