From 1c5adce18a16b52a2065fe96a264465aa5844713 Mon Sep 17 00:00:00 2001 From: Archisman Panigrahi Date: Mon, 29 Apr 2024 02:11:12 -0400 Subject: [PATCH] New version with python 3.12 support --- debian/changelog | 6 ++++++ safeeyes/glade/about_dialog.glade | 2 +- .../platform/io.github.slgobinath.SafeEyes.metainfo.xml | 2 +- safeeyes/safeeyes.py | 2 +- setup.py | 4 ++-- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 27e607e..5e839b8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +safeeyes (2.1.7) noble; urgency=medium + + * Support Python 3.12 + + -- Archisman Panigrahi Mon, 29 Apr 2024 02:09:48 -0400 + safeeyes (2.1.6-0) lunar; urgency=high * Support Python 3.11 diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index 16780f7..6ae9334 100644 --- a/safeeyes/glade/about_dialog.glade +++ b/safeeyes/glade/about_dialog.glade @@ -71,7 +71,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.center 10 10 - Safe Eyes 2.1.5 + Safe Eyes 2.1.7 center diff --git a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml index 0aa25a6..5acc7e2 100644 --- a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml +++ b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml @@ -47,7 +47,7 @@ https://slgobinath.github.io/SafeEyes/ - + diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 0a7bcae..223c80b 100644 --- a/safeeyes/safeeyes.py +++ b/safeeyes/safeeyes.py @@ -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.1.6" +SAFE_EYES_VERSION = "2.1.7" class SafeEyes: diff --git a/setup.py b/setup.py index c7bc490..7afaca5 100644 --- a/setup.py +++ b/setup.py @@ -78,14 +78,14 @@ def __package_data(): setuptools.setup( name="safeeyes", - version="2.1.6", + version="2.1.7", 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.1.6.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.7.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files(),