From 17f7ef31008c76306fb45ffbcacc8c911878d879 Mon Sep 17 00:00:00 2001 From: Aki Ariga Date: Thu, 20 Nov 2025 11:45:39 -0800 Subject: [PATCH] Set minimum version of dependencies --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 209404d..bf0e589 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,9 +28,9 @@ classifiers = [ ] dependencies = [ - "python-dateutil", - "msgpack>=0.6.2", - "urllib3", + "python-dateutil>=2.9.0.post0", # 2.9.0 supports Python 3.12+ + "msgpack>=1.1.2", # 1.1.2 supports Python 3.9+ + "urllib3>=2.0.0", # To ensure type hinting not breaks ] [project.optional-dependencies]