From 23075cc2c74e3c268eaea9f329d9eef478195e62 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 4 Oct 2023 12:39:09 +0100 Subject: [PATCH] Version bump boto3 for Python 3.12 compatibility Relax the upper version bound to <2, because we're unlikely to stay on top of keeping the version listed in testing_extras up to date, and if boto makes breaking changes that violate semver, that's going to affect end-users so we really want to know about it sooner rather than later. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ef918b3593..3e38fe74da 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ testing_extras = [ "python-dateutil>=2.7", "pytz>=2014.7", "Jinja2>=3.0,<3.2", - "boto3>=1.16,<1.17", + "boto3>=1.28,<2", "freezegun>=0.3.8", "azure-mgmt-cdn>=12.0,<13.0", "azure-mgmt-frontdoor>=1.0,<1.1",