Support Python 3.8 and 3.9 and release v2.1.0

This commit is contained in:
Gobinath 2020-12-17 17:37:53 -05:00
parent 9c7e761de5
commit a29d027852
5 changed files with 10 additions and 8 deletions

4
debian/changelog vendored
View File

@ -1,4 +1,6 @@
safeeyes (2.0.9-1) xenial; urgency=high safeeyes (2.1.0-1) xenial; urgency=high
* Add Python 3.8 and 3.9 support
* Redesigned settings dialog * Redesigned settings dialog
* Add tray action buttons to the break screen * Add tray action buttons to the break screen

4
debian/control vendored
View File

@ -4,12 +4,12 @@ Priority: optional
Maintainer: Gobinath Loganathan <slgobinath@gmail.com> Maintainer: Gobinath Loganathan <slgobinath@gmail.com>
Build-Depends: debhelper (>= 9), python3, python3-setuptools Build-Depends: debhelper (>= 9), python3, python3-setuptools
Standards-Version: 3.9.6 Standards-Version: 3.9.6
X-Python3-Version: >= 3.4 X-Python3-Version: >= 3.5
Homepage: https://github.com/slgobinath/SafeEyes/ Homepage: https://github.com/slgobinath/SafeEyes/
Package: safeeyes Package: safeeyes
Architecture: all Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, gir1.2-appindicator3-0.1, python3 (>= 3.4.0), python3-xlib, python3-dbus, gir1.2-notify-0.7, python3-babel, x11-utils, xprintidle, alsa-utils, python3-psutil Depends: ${misc:Depends}, ${python3:Depends}, gir1.2-appindicator3-0.1, python3 (>= 3.5.0), python3-xlib, python3-dbus, gir1.2-notify-0.7, python3-babel, x11-utils, xprintidle, alsa-utils, python3-psutil
Description: Safe Eyes Description: Safe Eyes
Safe Eyes is a simple tool to remind you to take periodic breaks for your eyes. This is essential for anyone spending more time on the computer to avoid eye strain and other physical problems. Safe Eyes is a simple tool to remind you to take periodic breaks for your eyes. This is essential for anyone spending more time on the computer to avoid eye strain and other physical problems.
. .

View File

@ -71,7 +71,7 @@ along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.</pro
<property name="valign">center</property> <property name="valign">center</property>
<property name="margin_top">10</property> <property name="margin_top">10</property>
<property name="margin_bottom">10</property> <property name="margin_bottom">10</property>
<property name="label" translatable="yes">Safe Eyes 2.0.9</property> <property name="label" translatable="yes">Safe Eyes 2.1.0</property>
<property name="justify">center</property> <property name="justify">center</property>
<attributes> <attributes>
<attribute name="style" value="normal"/> <attribute name="style" value="normal"/>

View File

@ -40,7 +40,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog
gi.require_version('Gtk', '3.0') gi.require_version('Gtk', '3.0')
from gi.repository import Gtk from gi.repository import Gtk
SAFE_EYES_VERSION = "2.0.9" SAFE_EYES_VERSION = "2.1.0"
class SafeEyes: class SafeEyes:

View File

@ -71,14 +71,14 @@ __data_files = list(_data_files('share'))
setuptools.setup( setuptools.setup(
name="safeeyes", name="safeeyes",
version="2.0.9", version="2.1.0",
description="Protect your eyes from eye strain using this continuous breaks reminder.", description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
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/v2.0.9.tar.gz", download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.0.tar.gz",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()}, package_data={'safeeyes': __package_data()},
data_files=__data_files, data_files=__data_files,
@ -91,5 +91,5 @@ setuptools.setup(
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK", "Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop", "Intended Audience :: End Users/Desktop",
"Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in '3 3.4 3.5 3.6 3.7'.split()] "Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in '3 3.5 3.6 3.7 3.8 3.9'.split()]
) )