Skip to content

Commit 0d31170

Browse files
committed
Bump to 0.8.0 release
1 parent a4760b8 commit 0d31170

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010
from shutil import rmtree
1111

12-
from setuptools import find_packages, setup, Command
12+
from setuptools import setup, Command
1313

1414
# Package meta-data.
1515
NAME = 'eac_logchecker'
@@ -18,7 +18,7 @@
1818
1919
AUTHOR = 'OPS'
2020
REQUIRES_PYTHON = '>=3.5.0'
21-
VERSION = '0.7.1'
21+
VERSION = '0.8.0'
2222

2323
here = os.path.abspath(os.path.dirname(__file__))
2424

@@ -56,7 +56,9 @@ def run(self):
5656
pass
5757

5858
self.status('Building Source and Wheel (universal) distribution…')
59-
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
59+
os.system(
60+
'{0} setup.py sdist bdist_wheel --universal'.format(sys.executable)
61+
)
6062

6163
self.status('Uploading the package to PyPI via Twine…')
6264
os.system('twine upload dist/*')

0 commit comments

Comments
 (0)