From dad03631df2db1e750244d5b56fe3a98dbb8167a Mon Sep 17 00:00:00 2001 From: "tim.reichard" Date: Fri, 18 Feb 2022 10:59:26 -0600 Subject: [PATCH] Use dominodatalab installed from pypi --- HISTORY.rst | 5 +++++ aioradio/requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b2d949b..4088652 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +v0.17.3 (2022-02-18) + +* Use dominodatalab installed from pypi instead of github. + + v0.17.2 (2022-02-18) * Adding converted async to sync functions to ds_utils.py. diff --git a/aioradio/requirements.txt b/aioradio/requirements.txt index 41bec90..aa56d9c 100644 --- a/aioradio/requirements.txt +++ b/aioradio/requirements.txt @@ -3,10 +3,10 @@ aiobotocore==2.1.0 aiojobs==0.3.0 boto3==1.20.24 ddtrace==0.58.2 +dominodatalab==1.0.6 fakeredis==1.7.1 flask==2.0.3 flask-cors==3.0.10 -https://github.com/dominodatalab/python-domino/archive/refs/tags/1.0.6.zip httpx==0.22.0 mandrill==1.0.60 moto==3.0.3 diff --git a/setup.py b/setup.py index 891d3fc..6a1913e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.17.2', + version='0.17.3', 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", @@ -25,6 +25,7 @@ 'aiojobs>=0.3.0', 'boto3==1.20.24', 'ddtrace>=0.58.2', + 'dominodatalab==1.0.6', 'fakeredis>=1.7.1', 'httpx>=0.19.0', 'mandrill>=1.0.60', @@ -36,7 +37,6 @@ 'python-json-logger>=2.0.2', 'redis==3.5.3' ], - dependency_links=['https://github.com/dominodatalab/python-domino/archive/refs/tags/1.0.6.zip'], include_package_data=True, tests_require=[ 'flask>=2.0.3',