From 89de708622b7f52bdce310a5fde8ca73346f2fd1 Mon Sep 17 00:00:00 2001 From: John Lyu Date: Tue, 16 Jul 2024 23:37:46 +0800 Subject: [PATCH] Update pyproject.toml `^3.6` means `>=3.6, <4` which is not necessary. No evidence shows that python 4 will break the package --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 60c8cef..c391ba9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ include = [ ] [tool.poetry.dependencies] -python = "^3.6" +python = ">=3.6" websocket-client = "1.*" requests = "*" @@ -38,4 +38,4 @@ build-backend = "poetry.masonry.api" [tool.poetry.scripts] hti = 'html2image:main' -html2image = 'html2image:main' \ No newline at end of file +html2image = 'html2image:main'