Compare commits
2 commits
26193bee00
...
7861fff539
Author | SHA1 | Date | |
---|---|---|---|
7861fff539 | |||
4066e5d6f9 |
4 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.1.2
|
current_version = 0.1.3
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -6,7 +6,7 @@ with open('README.rst') as f:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='TSGRain Controller',
|
name='TSGRain Controller',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
author='ThetaDev',
|
author='ThetaDev',
|
||||||
description='TSGRain irrigation controller',
|
description='TSGRain irrigation controller',
|
||||||
long_description=README,
|
long_description=README,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.1.2'
|
__version__ = '0.1.3'
|
||||||
|
|
|
@ -53,7 +53,7 @@ def run():
|
||||||
os.kill(os.getpid(), signal.SIGKILL)
|
os.kill(os.getpid(), signal.SIGKILL)
|
||||||
|
|
||||||
signal.signal(signal.SIGINT, _signal_handler)
|
signal.signal(signal.SIGINT, _signal_handler)
|
||||||
signal.signal(signal.SIGHUP, _signal_handler)
|
signal.signal(signal.SIGTERM, _signal_handler)
|
||||||
sys.excepthook = _except_handler
|
sys.excepthook = _except_handler
|
||||||
|
|
||||||
app.start()
|
app.start()
|
||||||
|
|
Loading…
Reference in a new issue