diff --git a/HISTORY.rst b/HISTORY.rst index aefe6d8..5c4c4cb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ======= +v0.20.11 (2024-03-12) + +* Add pyspark back in as install requirement. + + +v0.20.10 (2024-03-12) + +* Remove pyspark as an install requirement. + + v0.20.9 (2024-02-29) * Add new function promote_model_to_production in ds_utils. diff --git a/setup.py b/setup.py index a8610a6..17122a9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.20.9', + version='0.20.11', 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", @@ -41,7 +41,6 @@ 'pyarrow>=13.0.0', 'pysmb>=1.2.7', 'python-json-logger>=2.0.2', - 'pyspark>=3.4.1', 'redis>=5.0.1' ], include_package_data=True,