From c3c05604608ed177d5bfe9ed101921b765e41293 Mon Sep 17 00:00:00 2001 From: Kahlil Hodgson Date: Fri, 5 May 2023 09:39:24 +1000 Subject: [PATCH] fix: Fix over-restrictive python requirements --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index ff00ac7..abac596 100644 --- a/poetry.lock +++ b/poetry.lock @@ -481,5 +481,5 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess [metadata] lock-version = "2.0" -python-versions = ">3.8,<3.12" -content-hash = "573f5c3bcd9a7314ac05a9c031e4542c827049d87f75b813b969b3bccac9e201" +python-versions = ">=3.9,<3.12" +content-hash = "dcec0d59abf800529e91f4e7ef0383e1773b203c8b72ed1305d63d592db2cc9d" diff --git a/pyproject.toml b/pyproject.toml index 111ffe5..33b838e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ include = [ ] [tool.poetry.dependencies] -python = ">3.9,<3.12" +python = ">=3.9,<3.12" redis = "^2.10.0" python-dateutil = "*" future = "^0.14.3"