8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 077c1af commit b1efad9Copy full SHA for b1efad9
setup.py
@@ -1,7 +1,9 @@
1
+from twilio import __version__
2
from setuptools import setup, find_packages
3
+
4
setup(
5
name = "twilio",
- version = "3.3.1",
6
+ version = __version__,
7
description = "Twilio API client and TwiML generator",
8
author = "Twilio",
9
author_email = "help@twilio.com",
twilio/__init__.py
@@ -1,4 +1,4 @@
-__version_info__ = ('3', '2', '3')
+__version_info__ = ('3', '3', '2')
__version__ = '.'.join(__version_info__)
0 commit comments