From 290490239f55050774f377c840e9269027c9c279 Mon Sep 17 00:00:00 2001 From: Tim Reichard Date: Fri, 26 Jul 2024 09:26:49 -0500 Subject: [PATCH] Update install require numpy==1.23.5 --- 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 7e92487..d3afd4b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +v0.20.24 (2024-07-26) + +* Update install require numpy==1.23.5. + + v0.20.23 (2024-07-25) * Update install requires grpcio==1.62.2 & grpcio-status==1.62.2. diff --git a/aioradio/requirements.txt b/aioradio/requirements.txt index 9942fe0..43047f8 100644 --- a/aioradio/requirements.txt +++ b/aioradio/requirements.txt @@ -17,7 +17,7 @@ httpx==0.27.0 mandrill==1.0.60 mlflow==2.14.3 moto==4.2.14 -numpy==1.26.4 +numpy==1.23.5 openpyxl==3.0.10 orjson==3.9.15 pandas==2.2.2 diff --git a/setup.py b/setup.py index 4dc304f..96986fd 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.20.23', + version='0.20.24', 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", @@ -35,7 +35,7 @@ 'httpx>=0.23.0', 'mandrill>=1.0.60', 'mlflow>=2.10.2', - 'numpy==1.26.4', + 'numpy==1.23.5', 'openpyxl==3.0.10', 'orjson>=3.6.8', 'pandas>=1.3.5',