Skip to content

Commit

Permalink
chore: removed file exec to get version (#561)
Browse files Browse the repository at this point in the history
* Getting rid of version read from init.py and moving logic to librarian

* Trigger Build
  • Loading branch information
shwetha-manvinkurke authored Feb 19, 2021
1 parent 2fb5d37 commit e440229
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
from __future__ import with_statement
from setuptools import setup, find_packages

__version__ = None
with open('twilio/__init__.py') as f:
exec(f.read())

with open('README.md') as f:
long_description = f.read()

Expand All @@ -18,7 +14,7 @@

setup(
name="twilio",
version=__version__,
version="6.52.0",
description="Twilio API client and TwiML generator",
author="Twilio",
author_email="[email protected]",
Expand Down

0 comments on commit e440229

Please sign in to comment.