8000 Setup.py now asks the twilio module for it's version · michaelhelmick/twilio-python@b1efad9 · GitHub
[go: up one dir, main page]

Skip to content

Commit b1efad9

Browse files
committed
Setup.py now asks the twilio module for it's version
1 parent 077c1af commit b1efad9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
from twilio import __version__
12
from setuptools import setup, find_packages
3+
24
setup(
35
name = "twilio",
4-
version = "3.3.1",
6+
version = __version__,
57
description = "Twilio API client and TwiML generator",
68
author = "Twilio",
79
author_email = "help@twilio.com",

twilio/__init__.py

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

44

0 commit comments

Comments
 (0)
0