From 29a6a8cac53cf3cac1746d800a2b255b92042f6f Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Tue, 12 Apr 2022 13:50:44 +0100 Subject: [PATCH] Bump pytz dependency version The pyproject.toml file specifies "^2019.3" as the version, but pytz does not use semantic versioning. "^1.2.3" allows versions ">=1.2.3 <2.0.0", so for pytz that means ">=2019.3 <2020". Instead of pinning to releases from a specific year, specify that version as a minimum version instead. Signed-off-by: Tim Waugh --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1619013..d71eec3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ python-magic = "^0.4.15" requests-oauthlib = "^1.3.0" six = "^1.13.0" ijson = "^2.5.1" -pytz = "^2019.3" +pytz = ">=2019.3" [tool.poetry.dev-dependencies] twine = "^1.13" diff --git a/requirements.txt b/requirements.txt index 3e93c2c..4c209e2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,7 +19,7 @@ Pygments==2.4.2 pyparsing==2.4.4 python-coveralls==2.9.3 python-magic==0.4.15 -pytz==2019.3 +pytz==2022.1 PyYAML==5.4 readme-renderer==24.0 requests==2.22.0