Remove dbus dependency

This commit is contained in:
Gobinath 2019-01-21 22:01:01 -05:00
parent cdb67a6ddd
commit 7c50b100ab
4 changed files with 5 additions and 6 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
safeeyes (2.0.7-1) xenial; urgency=high
safeeyes (2.0.8-1) xenial; urgency=high
* Add tray action buttons to the break screen
* Allow long short breaks for promodo mode

View File

@ -39,7 +39,7 @@ from safeeyes.settings import SettingsDialog
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
SAFE_EYES_VERSION = "2.0.7"
SAFE_EYES_VERSION = "2.0.8"
class SafeEyes(object):

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.7</property>
<property name="label" translatable="yes">Safe Eyes 2.0.8</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>

View File

@ -5,7 +5,6 @@ import setuptools
requires = [
'babel',
'dbus-python',
'psutil',
'PyGObject',
'python-xlib'
@ -72,14 +71,14 @@ __data_files = list(_data_files('share'))
setuptools.setup(
name="safeeyes",
version="2.0.7",
version="2.0.8",
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.7.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.8.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()},
data_files=__data_files,