Merge pull request 'v2.2.0' (#34) from v2.2.0 into master

Reviewed-on: #34
master
Steve L. Nyemba 4 months ago
commit 8fdcbce42d

@ -53,9 +53,9 @@ def wait(jobs):
while jobs :
jobs = [thread for thread in jobs if thread.is_alive()]
time.sleep(1)
def wait (jobs):
while jobs :
jobs = [pthread for pthread in jobs if pthread.is_alive()]
# def wait (jobs):
# while jobs :
# jobs = [pthread for pthread in jobs if pthread.is_alive()]
@app_e.command(name="run")
def apply (path:Annotated[str,typer.Argument(help="path of the configuration file")],

@ -18,6 +18,7 @@ classifiers = [
]
dependencies = [
"termcolor","sqlalchemy", "aiosqlite","duckdb-engine",
"mysql-connector-python","psycopg2-binary","nzpy","pymssql","duckdb-engine","aiosqlite",
"typer","pandas","numpy","sqlalchemy","pyarrow",
"plugin-ix@git+https://github.com/lnyemba/plugins-ix"
]

@ -49,7 +49,8 @@ def init (email,path=REGISTRY_PATH,override=False,_file=REGISTRY_FILE):
Initializing the registry and will raise an exception in the advent of an issue
"""
p = '@' in email
q = False if '.' not in email else email.split('.')[-1] in ['edu','com','io','ai','org']
#q = False if '.' not in email else email.split('.')[-1] in ['edu','com','io','ai','org']
q = len(email.split('.')[-1]) in [2,3]
if p and q :
_config = {"email":email,'version':__version__}
if not os.path.exists(path):

Loading…
Cancel
Save