From e440229247a65022634685384f5d82d5fecaf2a7 Mon Sep 17 00:00:00 2001 From: Shwetha Radhakrishna Date: Fri, 19 Feb 2021 14:20:06 -0700 Subject: [PATCH] chore: removed file exec to get version (#561) * Getting rid of version read from init.py and moving logic to librarian * Trigger Build --- setup.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 1385e5e804..48036af71f 100755 --- a/setup.py +++ b/setup.py @@ -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() @@ -18,7 +14,7 @@ setup( name="twilio", - version=__version__, + version="6.52.0", description="Twilio API client and TwiML generator", author="Twilio", author_email="help@twilio.com",