From 0c09c6b76cbe941c394798c4c4c838d5840b3bb5 Mon Sep 17 00:00:00 2001 From: Mustafa Date: Thu, 26 Jan 2023 04:04:13 -0600 Subject: [PATCH] fix: loosen loguru requirement further --- notifypy/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/notifypy/__init__.py b/notifypy/__init__.py index 63565db..3bc3a69 100644 --- a/notifypy/__init__.py +++ b/notifypy/__init__.py @@ -1,4 +1,4 @@ from .notify import Notify from .os_notifiers._base import BaseNotifier -__version__ = "0.3.39" +__version__ = "0.3.42" diff --git a/pyproject.toml b/pyproject.toml index 30633f4..16fdbce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "notify_py" -version = "0.3.41" +version = "0.3.42" description = "Cross-platform desktop notification library for Python" authors = ["Mustafa Mohamed "] repository = "https://github.com/ms7m/notify-py" @@ -13,7 +13,7 @@ packages = [ ] [tool.poetry.dependencies] python = ">=3.6,<4.0" -loguru = "^0.5.3,<=0.6.0" +loguru = ">=0.5.3,<=0.6.0" jeepney = [ { version = '*', platform = 'linux' }, ]