From a7f2b0432d0b2746c381c0c98c20116a727253fb Mon Sep 17 00:00:00 2001 From: Eun-chan Cho Date: Mon, 7 Nov 2022 10:40:11 +0900 Subject: [PATCH] fix(pyproject): fix dependencies' version requirement Thanks to pyMixin, found dependencies requirements are broken Close #44 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9a35439..9010376 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,8 @@ exclude = ["Test/test_*"] [tool.poetry.dependencies] python = ">=3.7, <4" -notion-client = ">=1.0.1" -cleo = "1.0.0a4" +notion-client = ">=1.0.0" +cleo = ">=1.0.0a4" [tool.poetry.scripts] notion2md = 'notion2md.console.application:main'