From f3208b322f868d14c8947ffcfcebb298754cddf2 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Thu, 4 Feb 2016 13:33:48 -0500 Subject: [PATCH] Update smtpapi to 0.3.1 This updates the Python smtpapi library to 0.3.1, the latest version that has been released. This closes https://github.com/sendgrid/sendgrid-python/issues/160. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bb0dc33ba..006e025bc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def getRequires(): - deps = ['smtpapi==0.2.0'] + deps = ['smtpapi==0.3.1'] if sys.version_info < (2, 7): deps.append('unittest2') elif (3, 0) <= sys.version_info < (3, 2):