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
* 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>
Build-Depends: debhelper (>= 9), python3, python3-setuptools
Standards-Version: 3.9.6
X-Python3-Version: >= 3.4
X-Python3-Version: >= 3.5
Homepage: https://github.com/slgobinath/SafeEyes/
Package: safeeyes
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
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="margin_top">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>
<attributes>
<attribute name="style" value="normal"/>

View File

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

View File

@ -71,14 +71,14 @@ __data_files = list(_data_files('share'))
setuptools.setup(
name="safeeyes",
version="2.0.9",
version="2.1.0",
description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Gobinath Loganathan",
author_email="slgobinath@gmail.com",
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(),
package_data={'safeeyes': __package_data()},
data_files=__data_files,
@ -91,5 +91,5 @@ setuptools.setup(
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"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()]
)