From c1bc167b7fc5d05d8d97ecc71525050f2c7e88b1 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Wed, 19 Feb 2025 23:24:34 -0600 Subject: [PATCH] bug fix & version update --- info/__init__.py | 9 +++++---- setup.py | 6 +++++- transport/__init__.py | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/info/__init__.py b/info/__init__.py index 77356ac..58e6380 100644 --- a/info/__init__.py +++ b/info/__init__.py @@ -14,11 +14,12 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I """ -__whatsnew__=f"""version {__version__}, focuses on collaborative environments like jupyter-base servers (apache zeppelin; jupyter notebook, jupyterlab, jupyterhub) +__whatsnew__=f"""version {__version__}, +1. Added support for read/write logs as well as plugins (when applied) +2. Bug fix with duckdb (adding readonly) for readers because there are issues with threads & processes +3. support for streaming data, important to use this with large volumes of data + - 1. support for apache iceberg data warehouse using spark - 2. Improved ETL & performance - 3. bug fixes: mongodb """ diff --git a/setup.py b/setup.py index 12be60e..a0cfeed 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() args = { "name":__app_name__, - "version":'-'.join([__version__,__edition__]), + "version":__version__, "author":__author__,"author_email":"info@the-phi.com", "license":__license__, # "packages":["transport","info","transport/sql"]}, @@ -22,6 +22,10 @@ args["keywords"]=['mongodb','duckdb','couchdb','rabbitmq','file','read','write', args["install_requires"] = ['pyncclient','duckdb-engine','pymongo','sqlalchemy','pandas','typer','pandas-gbq','numpy','cloudant','pika','nzpy','termcolor','boto3','boto','pyarrow','google-cloud-bigquery','google-cloud-bigquery-storage','flask-session','smart_open','botocore','psycopg2-binary','mysql-connector-python','numpy','pymssql','pyspark','pydrill','sqlalchemy_drill'] args["url"] = "https://healthcareio.the-phi.com/git/code/transport.git" args['scripts'] = ['bin/transport'] +args['classifiers'] = ['Programming Language :: Python :: 3', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + ], # if sys.version_info[0] == 2 : # args['use_2to3'] = True # args['use_2to3_exclude_fixers']=['lib2to3.fixes.fix_import'] diff --git a/transport/__init__.py b/transport/__init__.py index 33a3261..c3bb901 100644 --- a/transport/__init__.py +++ b/transport/__init__.py @@ -22,7 +22,7 @@ from transport import sql, nosql, cloud, other, warehouse import pandas as pd import json import os -from info import __version__,__author__,__email__,__license__,__app_name__,__whatsnew__ +from info import __version__,__author__,__email__,__license__,__app_name__,__whatsnew__,__edition__ from transport.iowrapper import IWriter, IReader, IETL from transport.plugins import PluginLoader from transport import providers