From c4169ebb84dd31eb28fbab72555c3c40845cc890 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sun, 22 Dec 2024 12:03:39 +0100 Subject: [PATCH] more flexible dependencies --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c67a902..d47026a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,11 +30,11 @@ include = [ "Changelog" = "https://github.com/hyugogirubato/cbz/blob/main/CHANGELOG.md" [tool.poetry.dependencies] -python = "^3.8" -xmltodict = "^0.13.0" -langcodes = "^3.4.0" -Pillow = "^10.4.0" -PyMuPDF = "^1.24.7" +python = ">=3.8" +xmltodict = ">=0.13.0" +langcodes = ">=3.4.0" +Pillow = ">=10.4.0" +PyMuPDF = ">=1.24.7" [tool.poetry.scripts] cbzplayer = "cbz.__main__:main"