From 282f66941af2e5bde1793d7521d207d2aeac79ed Mon Sep 17 00:00:00 2001 From: nggit <12218311+nggit@users.noreply.github.com> Date: Tue, 7 Nov 2023 20:53:24 +0700 Subject: [PATCH] release 0.0.207 --- setup.py | 8 +------- tremolo/__init__.py | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index a01a124..87fd668 100644 --- a/setup.py +++ b/setup.py @@ -2,18 +2,12 @@ from setuptools import setup -if __name__ == '__main__': - import sys - - if len(sys.argv) == 1: - sys.argv.append('install') - with open('README.md', 'r') as f: long_description = f.read() setup( name='tremolo', - version='0.0.206', + version='0.0.207', license='MIT', author='nggit', author_email='contact@anggit.com', diff --git a/tremolo/__init__.py b/tremolo/__init__.py index 1b588a6..aa7d888 100644 --- a/tremolo/__init__.py +++ b/tremolo/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.206' +__version__ = '0.0.207' from .tremolo import Tremolo # noqa: E402 from . import exceptions # noqa: E402,F401