From 3938b193e84540cdfc853c90928b57e2b659dd16 Mon Sep 17 00:00:00 2001 From: Tim Reichard Date: Tue, 12 Mar 2024 13:00:48 -0500 Subject: [PATCH 1/2] remove pyspark as an install requirement --- HISTORY.rst | 5 +++++ setup.py | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index aefe6d8..8baccae 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +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..a734c72 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.10', 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, From ce2225deb8f02cea97f9b761c89c227d4454dd6c Mon Sep 17 00:00:00 2001 From: Tim Reichard Date: Tue, 12 Mar 2024 13:05:41 -0500 Subject: [PATCH 2/2] Add pyspark back in as install requirement. --- HISTORY.rst | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8baccae..5c4c4cb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ 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. diff --git a/setup.py b/setup.py index a734c72..17122a9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.20.10', + 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",