From 6e45704252be28c5c50aeada6ddeb14bfd9b39ff Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Mon, 10 May 2021 14:49:08 -0500 Subject: [PATCH] bug fixes .... --- data/maker/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/maker/__init__.py b/data/maker/__init__.py index 3a4caf6..8180903 100644 --- a/data/maker/__init__.py +++ b/data/maker/__init__.py @@ -178,7 +178,7 @@ def generate(**_args): if partition : lparams['partition'] = partition - handler.load_meta(lparams) + handler.load_meta(**lparams) # # Let us now format the matrices by reverting them to a data-frame with values # diff --git a/setup.py b/setup.py index 9f091c8..d09d66d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import sys def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() args = {"name":"data-maker", - "version":"1.4.7.2", + "version":"1.4.7.3", "author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","license":"MIT", "packages":find_packages(),"keywords":["healthcare","data","transport","protocol"]} args["install_requires"] = ['data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','tensorflow==1.15','pandas','pandas-gbq','pymongo']