Prepare alpha version 1.2.0a3 release

This commit is contained in:
Gobinath 2017-04-14 18:42:26 -04:00
parent baae666ddc
commit 1a81b863cf
3 changed files with 4 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
safeeyes (1.2.0a2-1) xenial; urgency=low safeeyes (1.2.0a3-1) xenial; urgency=low
* Move to Python 3 * 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 is_active = True
CONFIGURATION_VERSION = 4 CONFIGURATION_VERSION = 4
SAFE_EYES_VERSION = "1.2.0a2" SAFE_EYES_VERSION = "1.2.0a3"
""" """
Listen to tray icon Settings action and send the signal to Settings dialog. Listen to tray icon Settings action and send the signal to Settings dialog.

View File

@ -29,7 +29,7 @@ setuptools.setup(
author="Gobinath Loganathan", author="Gobinath Loganathan",
author_email="slgobinath@gmail.com", author_email="slgobinath@gmail.com",
url="https://github.com/slgobinath/SafeEyes", url="https://github.com/slgobinath/SafeEyes",
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a2.tar.gz", download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a3.tar.gz",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
package_data={'safeeyes': ['config/*.json', package_data={'safeeyes': ['config/*.json',
'config/style/*.css', 'config/style/*.css',
@ -47,6 +47,6 @@ setuptools.setup(
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: GTK", "Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop", "Intended Audience :: End Users/Desktop",
"Topic :: Utilities" "Topic :: Utilities",
"Programming Language :: Python :: 3"] "Programming Language :: Python :: 3"]
) )