diff --git a/HISTORY.rst b/HISTORY.rst index abcabfa..67c9d19 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,12 @@ History ======= -v0.17.32 (2023-02-03) +v0.17.33 (2023-02-14) + +* Hardcode openpyxl version to 3.0.10. + + +v0.17.32 (2023-02-13) * 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',