Skip to content

Commit

Permalink
Tag 1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
samclane committed Aug 29, 2019
1 parent f87d265 commit 2345265
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
6 changes: 3 additions & 3 deletions lifx_control_panel/_constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.7.4"
BUILD_DATE = "2019-08-28T13:33:45.600251"
VERSION = "1.7.5"
BUILD_DATE = "2019-08-29T02:18:14.762305"
AUTHOR = "Sawyer McLane"
DEBUGGING = False
DEBUGGING = False
9 changes: 8 additions & 1 deletion lifx_control_panel/build_all.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import datetime

bd = datetime.datetime.now().isoformat()
auth = "Sawyer McLane"
vers = "1.7.4"
vers = "1.7.5"
is_debug = False

# Write version info into _constants.py resource file
Expand Down Expand Up @@ -130,3 +130,10 @@ exe = EXE(pyz,
runtime_tmpdir=None,
console=is_debug,
icon='icons//icon_vector.ico')

# Set debugging back to false
with open('_constants.py', 'w') as f:
f.write("VERSION = \"{}\"\n".format(vers))
f.write("BUILD_DATE = \"{}\"\n".format(bd))
f.write("AUTHOR = \"{}\"\n".format(auth))
f.write("DEBUGGING = {}".format(str(False)))
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
from setuptools import setup, find_packages
from lifx_control_panel._constants import VERSION

with open('README.md') as f:
long_description = f
long_description = str(f)


setup(name='lifx_control_panel',
version='1.7.4',
version=VERSION,
description='An open source application for controlling your LIFX brand lights',
url='http://github.com/samclane/LIFX-Control-Panel',
author='Sawyer McLane',
Expand All @@ -26,7 +28,7 @@
'numexpr',
'numpy'
],
download_url="https://github.com/samclane/LIFX-Control-Panel/archive/1.7.4.tar.gz",
download_url=f"https://github.com/samclane/LIFX-Control-Panel/archive/{VERSION}.tar.gz",
long_description_content_type="text/markdown",
long_description=long_description,
)

0 comments on commit 2345265

Please sign in to comment.