From ebb89911677b4c238397eb914fecf963d3875937 Mon Sep 17 00:00:00 2001 From: "tim.reichard" Date: Fri, 25 Mar 2022 08:28:51 -0500 Subject: [PATCH] Add latest aioboto 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 4088652..9176233 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ======= +v0.17.4 (2022-03-25) + +* Update aioboto3==9.4.0 +* Update aiobotocore==2.2.0 + + v0.17.3 (2022-02-18) * Use dominodatalab installed from pypi instead of github. diff --git a/aioradio/requirements.txt b/aioradio/requirements.txt index aa56d9c..27a3851 100644 --- a/aioradio/requirements.txt +++ b/aioradio/requirements.txt @@ -1,9 +1,9 @@ -aioboto3==9.3.1 -aiobotocore==2.1.0 +aioboto3==9.4.0 +aiobotocore==2.1.2 aiojobs==0.3.0 boto3==1.20.24 -ddtrace==0.58.2 -dominodatalab==1.0.6 +ddtrace==0.60.0 +dominodatalab==1.0.7 fakeredis==1.7.1 flask==2.0.3 flask-cors==3.0.10 @@ -14,11 +14,11 @@ orjson==3.6.7 pandas==1.4.1 pre-commit==2.17.0 psycopg2-binary==2.9.3 -pylint==2.12.2 +pylint==2.13.0 pyodbc==4.0.32 pysmb==1.2.7 -pytest==7.0.1 -pytest-asyncio==0.16.0 +pytest==7.1.1 +pytest-asyncio==0.18.3 pytest-cov==3.0.0 python-json-logger==2.0.2 redis==3.5.3 diff --git a/setup.py b/setup.py index 6a1913e..dfaf697 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.17.3', + version='0.17.4', 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,12 +20,12 @@ 'aioradio/aws', ], install_requires=[ - 'aioboto3>=9.3.1', - 'aiobotocore>=2.1.0', + 'aioboto3>=9.4.0', + 'aiobotocore>=2.1.2', 'aiojobs>=0.3.0', 'boto3==1.20.24', - 'ddtrace>=0.58.2', - 'dominodatalab==1.0.6', + 'ddtrace>=0.60.0', + 'dominodatalab==1.0.7', 'fakeredis>=1.7.1', 'httpx>=0.19.0', 'mandrill>=1.0.60', @@ -42,10 +42,10 @@ 'flask>=2.0.3', 'flask-cors>=3.0.10', 'moto>=3.0.3', - 'pre-commit>=2.7.0', + 'pre-commit>=2.15.0', 'pylint>=2.10.2', 'pytest>=7.0.1', - 'pytest-asyncio>=0.16.0', + 'pytest-asyncio>=0.15.1', 'pytest-cov>=3.0.0' ], zip_safe=False,