Skip to content

Commit

Permalink
Remove sqlalchemy, pandas, and requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph McKinsey committed Oct 11, 2024
1 parent 5cecf0d commit bc92c0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
13 changes: 3 additions & 10 deletions helics/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,10 @@ def _get_version():
pass

try:
import flask
except ImportError:
echo(
'helics-cli\'s web interface is not installed. You may want to run `pip install "helics[cli]"`.'
)

try:
import sqlalchemy
import helics_cli_extras
except ImportError:
echo(
'helics-cli\'s observer functionality is not installed. You may want to run `pip install "helics[cli]"`.'
'helics_cli_extras is not installed. You may want to run `pip install "helics[cli]"`.'
)

return """{}
Expand Down Expand Up @@ -111,7 +104,7 @@ def server(open: bool):
import helics_cli_extras
except ImportError:
error(
'helics-cli\'s web interface is not installed. You may want to run `pip install "helics[cli]"`.'
'helics_cli_extras is not installed. You may want to run `pip install "helics[cli]"`.'
)

if open:
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,7 @@ def is_pure(self):


helics_cli_install_requires = [
"requests",
"helics_cli_extras==0.0.1",
"pandas",
"SQLAlchemy",
"matplotlib",
]

Expand Down

0 comments on commit bc92c0c

Please sign in to comment.