From 8a35f98719a67ce4ad47596097acf16bfb5b08e2 Mon Sep 17 00:00:00 2001 From: Georg Wendorf Date: Sat, 11 Jan 2025 22:04:31 +0100 Subject: [PATCH] python-dateutil>=2.7 --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 6db04c505b..d9e82239d1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ universal = 0 [metadata] requires_dist = jmespath>=0.7.1,<2.0.0 - python-dateutil>=2.1,<3.0.0 + python-dateutil>=2.7,<3.0.0 urllib3>=1.25.4,<1.27; python_version<"3.10" urllib3>=1.25.4,!=2.2.0,<3; python_version>="3.10" diff --git a/setup.py b/setup.py index d0e487020d..3fb8da4974 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): requires = [ 'jmespath>=0.7.1,<2.0.0', - 'python-dateutil>=2.1,<3.0.0', + 'python-dateutil>=2.7,<3.0.0', # Prior to Python 3.10, Python doesn't require openssl 1.1.1 # but urllib3 2.0+ does. This means all botocore users will be # broken by default on Amazon Linux 2 and AWS Lambda without this pin.