From 69340c58322ba181fcffc319bdf624f5b4d66459 Mon Sep 17 00:00:00 2001 From: "tim.reichard" Date: Tue, 14 Feb 2023 13:21:26 -0600 Subject: [PATCH 1/2] Hardcode openpyxl version to 3.0.10 --- 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 abcabfa..738a075 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +v0.17.33 (2023-02-03) + +* Hardcode openpyxl version to 3.0.10. + + v0.17.32 (2023-02-03) * Update csv sniffer to read 8192 bytes instea of 4096. diff --git a/aioradio/requirements.txt b/aioradio/requirements.txt index 9fa7f1d..8a9f73c 100644 --- a/aioradio/requirements.txt +++ b/aioradio/requirements.txt @@ -12,7 +12,7 @@ flask-cors==3.0.10 httpx==0.23.3 mandrill==1.0.60 moto==3.1.18 -openpyxl==3.1.0 +openpyxl==3.0.10 orjson==3.8.5 pandas==1.4.4 pre-commit==2.21.0 diff --git a/setup.py b/setup.py index 0df14a9..f8d1ac5 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.17.32', + version='0.17.33', 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", @@ -32,7 +32,7 @@ 'httpx>=0.23.0', 'mandrill>=1.0.60', 'numpy>=1.19', - 'openpyxl>=3.0.10', + 'openpyxl==3.0.10', 'orjson>=3.6.8', 'pandas>=1.3.5', 'psycopg2-binary>=2.9.3', From 7d76dc64f30209ff67935043a1f7e54323b2584e Mon Sep 17 00:00:00 2001 From: "tim.reichard" Date: Tue, 14 Feb 2023 13:24:40 -0600 Subject: [PATCH 2/2] Update date in history for v0.17.33 --- HISTORY.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 738a075..67c9d19 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,12 +3,12 @@ History ======= -v0.17.33 (2023-02-03) +v0.17.33 (2023-02-14) * Hardcode openpyxl version to 3.0.10. -v0.17.32 (2023-02-03) +v0.17.32 (2023-02-13) * Update csv sniffer to read 8192 bytes instea of 4096.