Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
moonlightnexus committed Dec 13, 2023
2 parents 55c8c8c + 7206365 commit a3f5280
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='trustauthx',
version='0.5.1',
version='0.5.2',
description='Official connector SDK for TrustAuthx',
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
Expand Down
4 changes: 2 additions & 2 deletions trustauthx/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def install(packages):
subprocess.call("pip install fastapi[all]")
return
if isinstance(packages, list):
for package in packages:subprocess.call(package)
else:subprocess.call(packages)
for package in packages:subprocess.call(package, shell=True)
else:subprocess.call(packages, shell=True)
install(list_depends)
print("\nDependencies installed.")
a = sdk.Create_App(path=os.getcwd())
Expand Down

0 comments on commit a3f5280

Please sign in to comment.