Release Safe Eyes 1.2.0a8

This commit is contained in:
Gobinath 2017-04-19 14:39:46 -04:00
parent 1298d69838
commit 8761d6cbbf
3 changed files with 5 additions and 5 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
safeeyes (1.2.0-1) xenial; urgency=low
safeeyes (1.2.0a8-1) xenial; urgency=low
* Move to Python 3

View File

@ -44,7 +44,7 @@ system_style_sheet_path = os.path.join(Utility.bin_directory, "config/style/safe
is_active = True
CONFIGURATION_VERSION = 4
SAFE_EYES_VERSION = "1.2.0"
SAFE_EYES_VERSION = "1.2.0a8"
"""
Listen to tray icon Settings action and send the signal to Settings dialog.

View File

@ -23,13 +23,13 @@ def _data_files(path):
setuptools.setup(
name="safeeyes",
version="1.2.0",
version="1.2.0a8",
description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description,
author="Gobinath Loganathan",
author_email="slgobinath@gmail.com",
url="https://github.com/slgobinath/SafeEyes",
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a7.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a8.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': ['config/*.json',
'config/style/*.css',
@ -59,5 +59,5 @@ setuptools.setup(
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities"] + [
('Programming Language :: Python :: %s' % x) for x in
'3 3.4 3.5'.split()]
'3 3.4 3.5 3.6'.split()]
)