From 1e4c86c7406417c5ac87344325b56b7e435f0dfe Mon Sep 17 00:00:00 2001 From: Michael Atkinson Date: Wed, 4 Sep 2024 14:59:52 -0400 Subject: [PATCH 1/2] chore(deps): specify max pyee version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d65355b..4aac9e1 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def find_version(*file_paths): long_description=long_description, install_requires=[ 'flask>=2,<4', - 'pyee>=8', + 'pyee>=8.<12', ], classifiers=[ 'Development Status :: 5 - Production/Stable', From 3fb9d9c03dafa9381b6726e7be071a7b690d9340 Mon Sep 17 00:00:00 2001 From: Michael Atkinson Date: Wed, 4 Sep 2024 15:15:15 -0400 Subject: [PATCH 2/2] fix typo --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4aac9e1..c52b0be 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def find_version(*file_paths): long_description=long_description, install_requires=[ 'flask>=2,<4', - 'pyee>=8.<12', + 'pyee>=8,<12', ], classifiers=[ 'Development Status :: 5 - Production/Stable',