From 35041fb752b839104ca948ad494c7d384f1c3b45 Mon Sep 17 00:00:00 2001 From: "tim.reichard" Date: Fri, 1 Apr 2022 08:13:25 -0500 Subject: [PATCH] Update aioboto3 libs --- HISTORY.rst | 6 ++++++ aioradio/requirements.txt | 14 +++++++------- setup.py | 14 +++++++------- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 15c4d05..4f5e290 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ======= +v0.17.5 (2022-03-31) + +* Update aioboto3==9.5.0 +* Update aiobotocore==2.2.0 + + v0.17.4 (2022-03-25) * Update aioboto3==9.4.0 diff --git a/aioradio/requirements.txt b/aioradio/requirements.txt index 27a3851..de9d6f8 100644 --- a/aioradio/requirements.txt +++ b/aioradio/requirements.txt @@ -1,11 +1,11 @@ -aioboto3==9.4.0 -aiobotocore==2.1.2 +aioboto3==9.5.0 +aiobotocore==2.2.0 aiojobs==0.3.0 -boto3==1.20.24 -ddtrace==0.60.0 +boto3==1.21.21 +ddtrace==0.60.1 dominodatalab==1.0.7 fakeredis==1.7.1 -flask==2.0.3 +flask==2.1.1 flask-cors==3.0.10 httpx==0.22.0 mandrill==1.0.60 @@ -14,7 +14,7 @@ orjson==3.6.7 pandas==1.4.1 pre-commit==2.17.0 psycopg2-binary==2.9.3 -pylint==2.13.0 +pylint==2.13.4 pyodbc==4.0.32 pysmb==1.2.7 pytest==7.1.1 @@ -22,5 +22,5 @@ pytest-asyncio==0.18.3 pytest-cov==3.0.0 python-json-logger==2.0.2 redis==3.5.3 -twine==3.8.0 +twine==4.0.0 wheel==0.37.1 diff --git a/setup.py b/setup.py index dfaf697..62b026d 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.17.4', + version='0.17.5', description='Generic asynchronous i/o python utilities for AWS services (SQS, S3, DynamoDB, Secrets Manager), Redis, MSSQL (pyodbc), JIRA and more', long_description=long_description, long_description_content_type="text/markdown", @@ -20,11 +20,11 @@ 'aioradio/aws', ], install_requires=[ - 'aioboto3>=9.4.0', - 'aiobotocore>=2.1.2', + 'aioboto3==9.5.0', + 'aiobotocore==2.2.0', 'aiojobs>=0.3.0', - 'boto3==1.20.24', - 'ddtrace>=0.60.0', + 'boto3==1.21.21', + 'ddtrace>=0.60.1', 'dominodatalab==1.0.7', 'fakeredis>=1.7.1', 'httpx>=0.19.0', @@ -39,11 +39,11 @@ ], include_package_data=True, tests_require=[ - 'flask>=2.0.3', + 'flask>=2.1.1', 'flask-cors>=3.0.10', 'moto>=3.0.3', 'pre-commit>=2.15.0', - 'pylint>=2.10.2', + 'pylint>=2.13.4', 'pytest>=7.0.1', 'pytest-asyncio>=0.15.1', 'pytest-cov>=3.0.0'