Skip to content

Commit

Permalink
Add arctic support as a dependency requirement
Browse files Browse the repository at this point in the history
dtale supports arctic data integration.  Support that capability by default
  • Loading branch information
jasonkholden authored and aschonfeld committed Sep 19, 2019
1 parent 6af7b02 commit cc4e368
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dtale/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _arctic_loader():
from arctic import Arctic
from arctic.store.versioned_item import VersionedItem
except BaseException as ex:
logger.exception('In order to use the arctic loader you must install ahl.core!')
logger.exception('In order to use the arctic loader you must arctic!')
raise ex
host = Arctic(arctic_opts['host'])
lib = host.get_library(arctic_opts['library'])
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def run_tests(self):
keywords=["numeric", "pandas", "visualization", "flask"],
url="https://github.com/manahl/dtale",
install_requires=[
"arctic",
"jsonschema<3.0.0",
"flasgger==0.9.3",
"Flask",
Expand Down

0 comments on commit cc4e368

Please sign in to comment.