Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: removed file exec to get version #561

Merged
merged 2 commits into from
Feb 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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