From ef378b728404759d915e4944676e7fa8c86fcb59 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Tue, 5 Dec 2023 23:42:31 +0100 Subject: [PATCH] bump botocore dependency specification --- .pre-commit-config.yaml | 22 +++++++++++----------- CHANGES.rst | 2 +- setup.py | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 06c3cdc2..ca92d494 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,25 +1,25 @@ repos: - repo: 'https://github.com/pre-commit/pre-commit-hooks' - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - - repo: 'https://github.com/PyCQA/isort' - rev: 5.12.0 - hooks: - - id: isort - - repo: 'https://github.com/pycqa/flake8' - rev: 6.0.0 - hooks: - - id: flake8 - repo: 'https://github.com/asottile/pyupgrade' - rev: v3.3.2 + rev: v3.15.0 hooks: - id: pyupgrade args: - '--py36-plus' + - repo: 'https://github.com/PyCQA/isort' + rev: 5.12.0 + hooks: + - id: isort - repo: 'https://github.com/psf/black' - rev: 23.3.0 + rev: 23.11.0 hooks: - id: black + - repo: 'https://github.com/pycqa/flake8' + rev: 6.1.0 + hooks: + - id: flake8 diff --git a/CHANGES.rst b/CHANGES.rst index 976a0d79..b5e9c4f9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changes ------- -2.9.0 (2023-12-05) +2.9.0 (2023-12-12) ^^^^^^^^^^^^^^^^^^ * bump botocore dependency specification diff --git a/setup.py b/setup.py index 94ae4479..ac9e9595 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.33.2,<1.33.8', + 'botocore>=1.33.2,<1.33.14', '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.31.2,<1.31.8'], - 'boto3': ['boto3>=1.33.2,<1.33.8'], + 'awscli': ['awscli>=1.31.2,<1.31.14'], + 'boto3': ['boto3>=1.33.2,<1.33.14'], }