From 6be2c2a156d98b9413dbeb0e5f30359fec8f6a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 31 Mar 2023 16:30:24 +0200 Subject: [PATCH] Remove incorrect upper bound from `pytz` dependency Change the `pytz` dependency to use the `>=` operator rather than `^`, in order to allow installing newer versions. `pytz` uses calendar versioning rather than semantic versioning, so the `^` operator is meaningless there. Furthermore, since `pytz` version corresponds to the timezone data release, allowing the newest version is important to permit using up-to-date tzinfo. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f8c1fb2..1a1415a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ include = [ [tool.poetry.dependencies] python = "^3.7" -pytz = "^2022.7" +pytz = ">=2022.7" Flask = "^2.0.0" Babel = "^2.12.0" Jinja2 = "^3.1.2"