8000 chore: removed file exec to get version (#561) · githubib/twilio-python@e440229 · GitHub
[go: up one dir, main page]

Skip to content

Commit e440229

Browse files
chore: removed file exec to get version (twilio#561)
* Getting rid of version read from init.py and moving logic to librarian * Trigger Build
1 parent 2fb5d37 commit e440229

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
from __future__ import with_statement
22
from setuptools import setup, find_packages
33

4-
__version__ = None
5-
with open('twilio/__init__.py') as f:
6-
exec(f.read())
7-
84
with open('README.md') as f:
95
long_description = f.read()
106

@@ -18,7 +14,7 @@
1814

1915
setup(
2016
name="twilio",
21-
version=__version__,
17+
version="6.52.0",
2218
description="Twilio API client and TwiML generator",
2319
author="Twilio",
2420
author_email="help@twilio.com",

0 commit comments

Comments
 (0)
0