From 2b30f2c92ee80ae5378a65f40678066cfb20782c Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 16 May 2024 12:29:27 +0200 Subject: [PATCH] bump botocore dependency specification --- requirements-dev.in | 6 +++--- setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements-dev.in b/requirements-dev.in index d857ee22..5a122be2 100644 --- a/requirements-dev.in +++ b/requirements-dev.in @@ -3,10 +3,10 @@ coverage==7.2.7 docker~=6.1.3 moto[server,s3,sqs,lambda,dynamodb,cloudformation,sns,batch,ec2,rds]~=4.2.9 pre-commit~=3.5.0 -pytest==7.4.0 -pytest-cov==4.1.0 +pytest==8.1.1 +pytest-cov==5.0.0 pytest-asyncio~=0.21.1 -pytest-xdist==3.3.1 +pytest-xdist==3.5.0 setuptools==67.8.0;python_version>="3.12" # this is needed for test_patches diff --git a/setup.py b/setup.py index 45ea2c05..f7bf3985 100644 --- a/setup.py +++ b/setup.py @@ -7,15 +7,15 @@ # NOTE: When updating botocore make sure to update awscli/boto3 versions below install_requires = [ # pegged to also match items in `extras_require` - 'botocore>=1.34.70,<1.34.76', + 'botocore>=1.34.70,<1.34.77', 'aiohttp>=3.7.4.post0,<4.0.0', 'wrapt>=1.10.10, <2.0.0', 'aioitertools>=0.5.1,<1.0.0', ] extras_require = { - 'awscli': ['awscli>=1.32.70,<1.32.76'], - 'boto3': ['boto3>=1.34.70,<1.34.76'], + 'awscli': ['awscli>=1.32.70,<1.32.77'], + 'boto3': ['boto3>=1.34.70,<1.34.77'], }