From 3c5eee7518eec55e9a343884f950c84e940123a5 Mon Sep 17 00:00:00 2001 From: dyl_m Date: Mon, 14 Oct 2024 11:13:15 +0200 Subject: [PATCH 1/2] deps: isodate upgrade - 0.6 >> 0.7 Partial fix for #173 Changes introduced with isodate 0.7 release (according to their CHANGELOG)): 0.7.2 (2024-10-08) ------------------ - drop end of life python versions - Don't match garbage characters at the end of parsed strings #16 (Gabriel de Perthuis) Potentially breaking changes: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Fractional seconds are cut off to microseconds (always round down) - Allow control over return type of parse_duration #64 (Felix Claessen) - Python >= 3.7 required --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6c050bf..0d0c6d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ packages = [ python = "^3.6" requests = "^2.24.0" requests-oauthlib = "^1.3.0" -isodate = "^0.6.0" +isodate = "^0.7.0" dataclasses-json = [ {version = "^0.5.3", python = "<3.7"}, {version = "^0.6.0", python = ">=3.7"} From 75fe80616b02cd26ec59ecede4098754697fcd09 Mon Sep 17 00:00:00 2001 From: dyl_m Date: Mon, 14 Oct 2024 23:03:49 +0200 Subject: [PATCH 2/2] deps: isodate upgrade - 0.7.0 >> 0.7.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0d0c6d0..3e95fbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ packages = [ python = "^3.6" requests = "^2.24.0" requests-oauthlib = "^1.3.0" -isodate = "^0.7.0" +isodate = "^0.7.2" dataclasses-json = [ {version = "^0.5.3", python = "<3.7"}, {version = "^0.6.0", python = ">=3.7"}